File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change 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 \
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
You can’t perform that action at this time.
0 commit comments