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] - name: Configure and build [Debug]
run: | run: |
mkdir build-debug mkdir build-debug
cd build-debug cmake -S . -B build-debug/ -D CMAKE_BUILD_TYPE=Debug
cmake .. -D CMAKE_BUILD_TYPE=Debug cmake --build build-debug/
cmake --build .
- name: Configure and build [Release] - name: Configure and build [Release]
run: | run: |
mkdir build-release mkdir build-release
cd build-release cmake -S . -B build-release/ -D CMAKE_BUILD_TYPE=Release
cmake .. -D CMAKE_BUILD_TYPE=Release cmake --build build-release/
cmake --build .
- name: Run tests - name: Run tests
run: | run: ./build-debug/ChaosTests/ChaosTests
cd build-debug
./ChaosTests/ChaosTests
- name: Run benchmarks - name: Run benchmarks
run: | run: ./build-release/ChaosBenches/ChaosBenches
cd build-release
./ChaosBenches/ChaosBenches