From dc0c36fe93c2594803793f68f50dc92af372f9e8 Mon Sep 17 00:00:00 2001 From: Manuel Naranjo Date: Tue, 12 Mar 2024 12:49:11 +0100 Subject: [PATCH] ci: ignore certain configs * rules_jvm_external with bzlmod requires bazel 7 --- .github/workflows/ci.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fedfc76..c0e4efd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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: @@ -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"}, ]