Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix test names. #3

Merged
merged 3 commits into from
Apr 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
cmake --build . --config Release --target all
cmake --build . --config Release --target ntest
cmake --build . --config Release --target xtest
cmake --build . --config Release --target npytest
cmake --build . --config Release --target xpytest
cmake --build . --config Release --target gpytest
cmake --build . --config Release --target nptest
cmake --build . --config Release --target xptest
cmake --build . --config Release --target gptest
shell: cmd

vcbuild32:
Expand All @@ -39,9 +39,9 @@ jobs:
cmake --build . --config Release --target all
cmake --build . --config Release --target ntest
cmake --build . --config Release --target xtest
cmake --build . --config Release --target npytest
cmake --build . --config Release --target xpytest
cmake --build . --config Release --target gpytest
cmake --build . --config Release --target nptest
cmake --build . --config Release --target xptest
cmake --build . --config Release --target gptest
shell: cmd

osx_x64:
Expand All @@ -56,12 +56,12 @@ jobs:
cmake --build . --config Release --target all
cmake --build . --config Release --target ntest
cmake --build . --config Release --target xtest
cmake --build . --config Release --target npytest
cmake --build . --config Release --target xpytest
cmake --build . --config Release --target gpytest
cmake --build . --config Release --target nptest
cmake --build . --config Release --target xptest
cmake --build . --config Release --target gptest

ubuntu_x64:
name: 'OSX x64'
name: 'Ubuntu x64'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -72,6 +72,6 @@ jobs:
cmake --build . --config Release --target all
cmake --build . --config Release --target ntest
cmake --build . --config Release --target xtest
cmake --build . --config Release --target npytest
cmake --build . --config Release --target xpytest
cmake --build . --config Release --target gpytest
cmake --build . --config Release --target nptest
cmake --build . --config Release --target xptest
cmake --build . --config Release --target gptest
18 changes: 9 additions & 9 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ make -j10

make ntest
make xtest
make npytest
make xpytest
make gpytest
make nptest
make xptest
make gptest

# Do NOT run this outside of the xnd directory!
./distclean.sh
Expand All @@ -43,9 +43,9 @@ make ntest
make xtest

# Python Tests: optional
make npytest
make xpytest
make gpytest
make nptest
make xptest
make gptest

make install

Expand All @@ -69,8 +69,8 @@ cmake --build . --config Release --target ntest
cmake --build . --config Release --target xtest

# Python Tests: optional
cmake --build . --config Release --target npytest
cmake --build . --config Release --target xpytest
cmake --build . --config Release --target gpytest
cmake --build . --config Release --target nptest
cmake --build . --config Release --target xptest
cmake --build . --config Release --target gptest

cmake --install .
Loading