From fc225f6cef3587a7231a0d4a712ed7209a44772a Mon Sep 17 00:00:00 2001 From: Andreas Stefl Date: Wed, 7 Aug 2024 11:48:55 +0200 Subject: [PATCH] ci: Fix `build_performance` GitHub CI job after #3135 (#3487) https://github.com/acts-project/acts/pull/3135 broke `build_performance` which was not observed in the PR because this job only runs on the main branch --- .github/workflows/analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 1e8c7d9d118..3f234e66217 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -87,7 +87,6 @@ jobs: build_performance: runs-on: ubuntu-latest container: ghcr.io/acts-project/ubuntu2404:53 - if: github.ref == 'refs/heads/main' steps: - uses: actions/checkout@v4 - name: Install dependencies @@ -98,6 +97,7 @@ jobs: --preset=github-ci -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_CXX_FLAGS="-Werror" + -DACTS_BUILD_ODD=OFF - name: Measure run: cmakeperf collect build/compile_commands.json -o perf.csv - name: Results