Skip to content

Commit

Permalink
fix(ci): do not attempt to statically build asan
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Guerra <[email protected]>
  • Loading branch information
LucaGuerra committed Dec 17, 2024
1 parent 78491b4 commit 0764e2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
static: ["static", ""]
with:
arch: x86_64
sanitizers: true
sanitizers: ${{ matrix.static != '' && false || true }}
static: ${{ matrix.static != '' && true || false }}
version: ${{ needs.fetch-version.outputs.version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_build_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
build-musl-package:
# x86_64 only for now
if: ${{ inputs.arch == 'x86_64' }}
if: ${{ inputs.arch == 'x86_64' && inputs.sanitizers == false }}
runs-on: ubuntu-latest
container: alpine:3.17
steps:
Expand Down

0 comments on commit 0764e2a

Please sign in to comment.