From 60d9d6d9b507f3f99a4ff0aeaf30c279c9766fc4 Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Sat, 27 Apr 2024 13:33:06 +0200 Subject: [PATCH 1/2] Fix test names. --- .github/workflows/build.yml | 24 ++++++++++++------------ INSTALL.txt | 18 +++++++++--------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1c46a02..7e9d44e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: @@ -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: @@ -56,9 +56,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 ubuntu_x64: name: 'OSX x64' @@ -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 diff --git a/INSTALL.txt b/INSTALL.txt index da3ba1d..51e3152 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -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 @@ -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 @@ -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 . From ce02db80396f6da702df10ac336f8190db126dac Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Sat, 27 Apr 2024 13:33:53 +0200 Subject: [PATCH 2/2] Fix runner name. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7e9d44e..d87d02f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -61,7 +61,7 @@ jobs: cmake --build . --config Release --target gptest ubuntu_x64: - name: 'OSX x64' + name: 'Ubuntu x64' runs-on: ubuntu-latest steps: - uses: actions/checkout@v2