CI: Simplify steps' naming.
This commit is contained in:
@@ -17,19 +17,19 @@ jobs:
|
|||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y build-essential cmake valgrind lcov
|
sudo apt-get install -y build-essential cmake valgrind lcov
|
||||||
|
|
||||||
- name: Configure and build tests [Debug]
|
- name: Build tests
|
||||||
run: |
|
run: |
|
||||||
mkdir build-debug
|
mkdir build-debug
|
||||||
cmake -S . -B build-debug/ -D CMAKE_BUILD_TYPE=Debug
|
cmake -S . -B build-debug/ -D CMAKE_BUILD_TYPE=Debug
|
||||||
cmake --build build-debug/ -t ChaosTests
|
cmake --build build-debug/ -t ChaosTests
|
||||||
|
|
||||||
- name: Configure and build tests [Debug and Coverage]
|
- name: Build tests with coverage
|
||||||
run: |
|
run: |
|
||||||
mkdir build-debug-coverage
|
mkdir build-debug-coverage
|
||||||
cmake -S . -B build-debug-coverage/ -D CMAKE_BUILD_TYPE=Debug -D CHAOS_COVERAGE=ON
|
cmake -S . -B build-debug-coverage/ -D CMAKE_BUILD_TYPE=Debug -D CHAOS_COVERAGE=ON
|
||||||
cmake --build build-debug-coverage/ -t ChaosTests
|
cmake --build build-debug-coverage/ -t ChaosTests
|
||||||
|
|
||||||
- name: Configure and build tests [Debug, ASan and UBSan]
|
- name: Build tests with ASan and UBSan
|
||||||
run: |
|
run: |
|
||||||
mkdir build-debug-asanubsan
|
mkdir build-debug-asanubsan
|
||||||
cmake -S . -B build-debug-asanubsan/ -D CMAKE_BUILD_TYPE=Debug -D CHAOS_ASANUBSAN=ON
|
cmake -S . -B build-debug-asanubsan/ -D CMAKE_BUILD_TYPE=Debug -D CHAOS_ASANUBSAN=ON
|
||||||
@@ -72,7 +72,7 @@ jobs:
|
|||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y build-essential cmake
|
sudo apt-get install -y build-essential cmake
|
||||||
|
|
||||||
- name: Configure and build benchmarks [Release]
|
- name: Build benchmarks
|
||||||
run: |
|
run: |
|
||||||
mkdir build-release
|
mkdir build-release
|
||||||
cmake -S . -B build-release/ -D CMAKE_BUILD_TYPE=Release
|
cmake -S . -B build-release/ -D CMAKE_BUILD_TYPE=Release
|
||||||
|
|||||||
Reference in New Issue
Block a user