Skip to content

Commit

Permalink
chore(ci) fix Large CI workflow
Browse files Browse the repository at this point in the history
Although all its jobs run successfully, the Large CI workflow
has been failing consistently due to a single-entry bracket-list
in `.github/workflows/ci-large.yml` which Github seems particularly
sensitive towards.
  • Loading branch information
casimiro committed Dec 10, 2023
1 parent b9037ac commit d57439b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci-large.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ jobs:
fail-fast: false
matrix:
label: [""]
os: [ubuntu-latest]
cc: [clang-13, clang-14, gcc-10, gcc-11]
ngx: [1.25.3]
runtime: [wasmtime, wasmer, v8]
Expand All @@ -139,14 +138,13 @@ jobs:
v8: [11.4.183.23]
include:
- label: old_nginx
os: [ubuntu-latest]
cc: clang-15
ngx: 1.21.6
runtime: wasmtime
wasmtime: 14.0.3
uses: ./.github/workflows/job-build-tests.yml
with:
os: ${{ matrix.os }}
os: ubuntu-latest
cc: ${{ matrix.cc }}
ngx: ${{ matrix.ngx }}
runtime: ${{ matrix.runtime }}
Expand Down

0 comments on commit d57439b

Please sign in to comment.