Skip to content

Commit

Permalink
Merge pull request #3 from skrah/add-ci
Browse files Browse the repository at this point in the history
Fix test names.
  • Loading branch information
skrah committed Apr 27, 2024
2 parents 5fdf751 + 6308ac0 commit 87796b3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
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
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 .

0 comments on commit 87796b3

Please sign in to comment.