-
Notifications
You must be signed in to change notification settings - Fork 703
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into generate_main_ermain_split
- Loading branch information
Showing
18 changed files
with
534 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Run CMake / CTest C++ unit tests | ||
|
||
name: ctest | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**.cc?' | ||
- '**.cpp' | ||
- '**.cxx' | ||
- '**.hh?' | ||
- '**.hpp' | ||
- '**.hxx' | ||
- '**.CMakeLists' | ||
- '.github/workflows/ctest.yml' | ||
pull_request: | ||
paths: | ||
- '**.cc?' | ||
- '**.cpp' | ||
- '**.cxx' | ||
- '**.hh?' | ||
- '**.hpp' | ||
- '**.hxx' | ||
- '**.CMakeLists' | ||
- '.github/workflows/ctest.yml' | ||
|
||
jobs: | ||
ctest: | ||
runs-on: ${{ matrix.os }} | ||
name: Test C++ ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ilammy/msvc-dev-cmd@v1 | ||
if: startsWith(matrix.os,'windows') | ||
- uses: Bacondish2023/setup-googletest@v1 | ||
with: | ||
build-type: 'Release' | ||
- name: Build tests | ||
run: | | ||
cd test/cpp | ||
mkdir build | ||
cmake -S . -B build/ -DCMAKE_BUILD_TYPE=Release | ||
cmake --build build/ --config Release | ||
ls | ||
- name: Run tests | ||
run: | | ||
cd test/cpp | ||
ctest --test-dir build/ -C Release --output-on-failure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,6 +178,7 @@ dmypy.json | |
cython_debug/ | ||
|
||
# Cython intermediates | ||
_speedups.c | ||
_speedups.cpp | ||
_speedups.html | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
# This file is required to get pyximport to work with C++. | ||
# Switching from std::set to a pure C implementation is still on the table to simplify everything. | ||
# This file is used when doing pyximport | ||
import os | ||
|
||
def make_ext(modname, pyxfilename): | ||
from distutils.extension import Extension | ||
return Extension(name=modname, | ||
sources=[pyxfilename], | ||
language='c++') | ||
depends=["intset.h"], | ||
include_dirs=[os.getcwd()], | ||
language="c") |
Oops, something went wrong.