Skip to content

Commit cec8661

Browse files
committed
No need to keep doing set -x; the .build directory doesn't exist so no need to remove it.
1 parent b233467 commit cec8661

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
- name: Install LLVM+Clang
3535
if: startsWith(matrix.config.name, 'Ubuntu Clang')
3636
run: |
37-
set -x
3837
cat /etc/lsb-release
3938
# Remove existing Clang installations.
4039
sudo apt-get remove \
@@ -70,7 +69,6 @@ jobs:
7069
- name: Install GCC
7170
if: startsWith(matrix.config.name, 'Ubuntu GCC')
7271
run: |
73-
set -x
7472
# Remove existing GCC installations.
7573
sudo apt-get remove gcc-13 g++-13 gcc-14 g++-14 gcc g++
7674
sudo apt update
@@ -82,18 +80,14 @@ jobs:
8280
g++-${GCC_VERSION} --version
8381
- name: CMake Configure
8482
run: |
85-
set -x
8683
echo ${{ matrix.config.cmake_args }}
8784
echo ${{ matrix.config.toolchain }}
88-
rm -rf .build
8985
cmake ${{ matrix.config.cmake_args }} -DCMAKE_TOOLCHAIN_FILE="etc/${{ matrix.config.toolchain }}-toolchain.cmake" -B .build -S .
9086
- name: CMake Build
9187
run: |
92-
set -x
9388
cmake --build .build --config Asan --target all -- -k 0
9489
- name: CMake Test
9590
run: |
96-
set -x
9791
[[ ! -z "${{ matrix.config.asan_options }}" ]] && export ASAN_OPTIONS="${{ matrix.config.asan_options }}"
9892
ctest --build-config Asan --output-on-failure --test-dir .build
9993

0 commit comments

Comments
 (0)