Get rid of unnecessary path relativity in 'test-and-benchmark' job
All checks were successful
Chaos CI / test-and-benchmark (push) Successful in 2m1s

This commit is contained in:
hashlag
2026-01-25 18:26:24 +03:00
parent 254c1e0e01
commit ab9220587e

View File

@@ -20,23 +20,17 @@ jobs:
- name: Configure and build [Debug]
run: |
mkdir build-debug
cd build-debug
cmake .. -D CMAKE_BUILD_TYPE=Debug
cmake --build .
cmake -S . -B build-debug/ -D CMAKE_BUILD_TYPE=Debug
cmake --build build-debug/
- name: Configure and build [Release]
run: |
mkdir build-release
cd build-release
cmake .. -D CMAKE_BUILD_TYPE=Release
cmake --build .
cmake -S . -B build-release/ -D CMAKE_BUILD_TYPE=Release
cmake --build build-release/
- name: Run tests
run: |
cd build-debug
./ChaosTests/ChaosTests
run: ./build-debug/ChaosTests/ChaosTests
- name: Run benchmarks
run: |
cd build-release
./ChaosBenches/ChaosBenches
run: ./build-release/ChaosBenches/ChaosBenches