Skip to content

Commit 0764e2a

Browse files
committed
fix(ci): do not attempt to statically build asan
Signed-off-by: Luca Guerra <[email protected]>
1 parent 78491b4 commit 0764e2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
static: ["static", ""]
5555
with:
5656
arch: x86_64
57-
sanitizers: true
57+
sanitizers: ${{ matrix.static != '' && false || true }}
5858
static: ${{ matrix.static != '' && true || false }}
5959
version: ${{ needs.fetch-version.outputs.version }}
6060

.github/workflows/reusable_build_packages.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
121121
build-musl-package:
122122
# x86_64 only for now
123-
if: ${{ inputs.arch == 'x86_64' }}
123+
if: ${{ inputs.arch == 'x86_64' && inputs.sanitizers == false }}
124124
runs-on: ubuntu-latest
125125
container: alpine:3.17
126126
steps:

0 commit comments

Comments
 (0)