Daily -> GHA #2
Workflow file for this run
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: CI | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
pull_request: # TODO remove this before merge | |
permissions: | |
contents: read | |
actions: read | |
checks: write | |
jobs: | |
long-asan: | |
name: Long ASAN | |
runs-on: [self-hosted, 1ES.Pool=gha-virtual-ccf-sub] | |
container: | |
image: ghcr.io/microsoft/ccf/ci/default:build-26-06-2024 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "Build" | |
run: | | |
mkdir build | |
cd build | |
cmake -GNinja -DCOMPILE_TARGET=virtual -DCMAKE_BUILD_TYPE=Debug -DLONG_TESTS=ON -DLVI_MITIGATIONS=OFF -DSAN=ON .. | |
ninja | |
- name: "Test" | |
run: | | |
set +x | |
./tests.sh -VV --timeout 1600 --no-compress-output -LE "benchmark|perf | |
long-tsan: | |
name: Long TSAN | |
runs-on: [self-hosted, 1ES.Pool=gha-virtual-ccf-sub] | |
container: | |
image: ghcr.io/microsoft/ccf/ci/default:build-26-06-2024 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "Build" | |
run: | | |
mkdir build | |
cd build | |
cmake -GNinja -DCOMPILE_TARGET=virtual -DCMAKE_BUILD_TYPE=Debug -DLONG_TESTS=ON -DLVI_MITIGATIONS=OFF -DTSAN=ON -DWORKER_THREADS=2 .. | |
ninja | |
- name: "Test" | |
run: | | |
set +x | |
./tests.sh -VV --timeout 1600 --no-compress-output -LE "benchmark|perf |