daily-sanitizers #7
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: daily-sanitizers | |
on: | |
schedule: | |
- cron: '0 4 * * *' # run at 4 AM UTC | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: [ubuntu-24.04] | |
strategy: | |
matrix: | |
container: ["ubuntu-dev:24"] | |
build-type: [Debug] | |
compiler: [{ cxx: clang++, c: clang }] | |
# TODO bring it back when warnings on clang are fixed | |
# cxx_flags: ["-Werror"] | |
timeout-minutes: 90 | |
env: | |
SCCACHE_GHA_ENABLED: "true" | |
SCCACHE_CACHE_SIZE: 6G | |
SCCACHE_ERROR_LOG: /tmp/sccache_log.txt | |
container: | |
image: ghcr.io/romange/${{ matrix.container }} | |
options: --security-opt seccomp=unconfined | |
credentials: | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Run sccache-cache | |
uses: mozilla-actions/[email protected] | |
- name: Configure Cache Env | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '') | |
- name: Prepare Environment | |
run: | | |
uname -a | |
cmake --version | |
mkdir -p ${GITHUB_WORKSPACE}/build | |
echo "===================Before freeing up space ============================================" | |
df -h | |
rm -rf /hostroot/usr/share/dotnet | |
rm -rf /hostroot/usr/local/share/boost | |
rm -rf /hostroot/usr/local/lib/android | |
rm -rf /hostroot/opt/ghc | |
echo "===================After freeing up space ============================================" | |
df -h | |
- name: Configure & Build | |
run: | | |
apt -y update | |
apt -y upgrade | |
apt install -y clang | |
which clang | |
echo "ulimit is" | |
ulimit -s | |
echo "-----------------------------" | |
echo "disk space is:" | |
df -h | |
echo "-----------------------------" | |
mkdir -p $GITHUB_WORKSPACE/build | |
cd $GITHUB_WORKSPACE/build | |
cmake .. \ | |
-DCMAKE_BUILD_TYPE=Debug \ | |
-GNinja \ | |
-DCMAKE_C_COMPILER="${{matrix.compiler.c}}" \ | |
-DCMAKE_CXX_COMPILER="${{matrix.compiler.cxx}}" \ | |
-DCMAKE_C_COMPILER_LAUNCHER=sccache \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache \ | |
-DCMAKE_CXX_FLAGS="${{matrix.cxx_flags}}" \ | |
-DWITH_ASAN=ON \ | |
-DWITH_USAN=ON \ | |
-DCMAKE_C_FLAGS=-Wno-error=unused-command-line-argument \ | |
-DCMAKE_CXX_FLAGS=-Wno-error=unused-command-line-argument | |
# https://maskray.me/blog/2023-08-25-clang-wunused-command-line-argument (search for compiler-rt) | |
ninja src/all | |
- name: Test | |
run: | | |
cd $GITHUB_WORKSPACE/build | |
ctest -V -L DFLY | |
- name: Send notifications on failure | |
if: failure() && github.ref == 'refs/heads/main' | |
shell: bash | |
run: | | |
job_link="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}" | |
message="Daily sanitizers failed.\\n Job Link: ${job_link}\\n" | |
curl -s \ | |
-X POST \ | |
-H 'Content-Type: application/json' \ | |
'${{ secrets.GSPACES_BOT_DF_BUILD }}' \ | |
-d '{"text": "'"${message}"'"}' |