diff --git a/.github/workflows/cmake-integration.yml b/.github/workflows/cmake-integration.yml index 6eed65f..d6a8307 100644 --- a/.github/workflows/cmake-integration.yml +++ b/.github/workflows/cmake-integration.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - - name: build + - name: test run: | tag=$(git rev-parse --abbrev-ref HEAD) mkdir build @@ -70,7 +70,7 @@ jobs: runs-on: macos-13 steps: - uses: actions/checkout@v2 - - name: build + - name: test run: | tag=$(git rev-parse --abbrev-ref HEAD) mkdir build diff --git a/.github/workflows/performance-tests.yml b/.github/workflows/performance-tests.yml index 2713093..a57ca15 100644 --- a/.github/workflows/performance-tests.yml +++ b/.github/workflows/performance-tests.yml @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v2 - name: dependencies run: sudo apt install gcc-11 g++-11 libgcc-11-dev - - name: build + - name: build and speedtest run: | mkdir -p build cd build @@ -61,7 +61,7 @@ jobs: # - uses: actions/checkout@v2 # - name: Enable Developer Command Prompt # uses: ilammy/msvc-dev-cmd@v1.10.0 - # - name: build + # - name: build and speedtest # run: | # mkdir -p build # cd build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9f749bf..e418d82 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 - name: dependencies run: sudo apt install gcc-10 g++-10 libgcc-10-dev - - name: build + - name: build and test run: | pip3 install colorama #python3 ci/test-all-configs.py @@ -21,7 +21,7 @@ jobs: runs-on: macos-13 steps: - uses: actions/checkout@v2 - - name: build + - name: build and test run: | pip3 install colorama #python3 ci/test-all-configs.py @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v2 - name: Enable Developer Command Prompt uses: ilammy/msvc-dev-cmd@v1.10.0 - - name: build + - name: build and test run: | pip3 install colorama #python3 ci/test-all-configs.py --msvc-only @@ -41,7 +41,7 @@ jobs: - uses: actions/checkout@v2 - name: Enable Developer Command Prompt uses: ilammy/msvc-dev-cmd@v1.10.0 - - name: build + - name: build and test run: | pip3 install colorama #python3 ci/test-all-configs.py --clang-only @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v2 - name: Enable Developer Command Prompt uses: ilammy/msvc-dev-cmd@v1.10.0 - - name: build + - name: build and test run: | pip3 install colorama #python3 ci/test-all-configs.py --mingw-only