Skip to content

Commit

Permalink
ci: ignore certain configs
Browse files Browse the repository at this point in the history
* rules_jvm_external with bzlmod requires bazel 7
  • Loading branch information
manuelnaranjo committed Mar 12, 2024
1 parent a76c80f commit dc0c36f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ on:
workflow_dispatch:

concurrency:
# Cancel previous actions from the same PR or branch except 'main' branch.
# See https://docs.github.com/en/actions/using-jobs/using-concurrency and https://docs.github.com/en/actions/learn-github-actions/contexts for more info.
group: concurrency-group::${{ github.workflow }}::${{ github.event.pull_request.number > 0 && format('pr-{0}', github.event.pull_request.number) || github.ref_name }}${{ github.ref_name == 'main' && format('::{0}', github.run_id) || ''}}
cancel-in-progress: ${{ github.ref_name != 'main' }}
# Cancel previous actions from the same PR or branch except 'main' branch.
# See https://docs.github.com/en/actions/using-jobs/using-concurrency and https://docs.github.com/en/actions/learn-github-actions/contexts for more info.
group: concurrency-group::${{ github.workflow }}::${{ github.event.pull_request.number > 0 && format('pr-{0}', github.event.pull_request.number) || github.ref_name }}${{ github.ref_name == 'main' && format('::{0}', github.run_id) || ''}}
cancel-in-progress: ${{ github.ref_name != 'main' }}

jobs:
test:
Expand All @@ -27,5 +27,7 @@ jobs:
]
exclude: |
[
{"folder": ".", "bzlmodEnabled": false}
{"folder": ".", "bzlmodEnabled": false},
{"folder": "e2e/smoke", "bzlmodEnabled": true, "bazelversion": "6.4.0"},
{"folder": ".", "bzlmodEnabled": true, "bazelversion": "6.4.0"},
]

0 comments on commit dc0c36f

Please sign in to comment.