update #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux_CI | |
on: | |
push: | |
branches: | |
- main | |
- rel-* | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
Linux_x64_gcc_ubuntu24_release: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
set -e -x | |
rm -rf build | |
cmake --workflow --preset linux_gcc_release_workflow | |
Linux_x64_gcc_ubuntu22_release: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
set -e -x | |
rm -rf build | |
cmake --workflow --preset linux_gcc_release_workflow | |
Linux_x64_gcc_ubuntu24_debug: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
set -e -x | |
rm -rf build | |
cmake --workflow --preset linux_gcc_debug_workflow | |
Linux_x64_clang_ubuntu24_debug: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
set -e -x | |
rm -rf build | |
cmake --workflow --preset linux_clang_debug_workflow | |
Linux_x64_gcc_ubuntu24_debug_asan: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
set -e -x | |
rm -rf build | |
cmake --workflow --preset linux_gcc_debug_asan_workflow |