From 8381cee4f09700e99130ade6c62f6005b39cf44d Mon Sep 17 00:00:00 2001 From: Chuck Grindel Date: Mon, 11 Dec 2023 09:14:04 -0700 Subject: [PATCH 1/2] chore: use cgrindel/gha_join_jobs to consolidate all CI job statuses --- .github/workflows/workflow.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index e4bb819..b8ae46e 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -89,3 +89,13 @@ jobs: cd tests && bazel test //... fi + + all_ci_tests: + runs-on: ubuntu-latest + needs: + - build-and-test + if: ${{ always() }} + steps: + - uses: cgrindel/gha_join_jobs@794a2d117251f22607f1aab937d3fd3eaaf9a2f5 # v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} From f7f98fea765c14010c2f3acf16e0f72e9a86adbb Mon Sep 17 00:00:00 2001 From: Chuck Grindel Date: Mon, 11 Dec 2023 13:04:41 -0700 Subject: [PATCH 2/2] chore: upgrade Bazel to 7.0.0 --- .bazeliskrc | 2 +- .github/workflows/workflow.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bazeliskrc b/.bazeliskrc index 7c75a11..912bd81 100644 --- a/.bazeliskrc +++ b/.bazeliskrc @@ -1 +1 @@ -USE_BAZEL_VERSION=7.0.0rc5 +USE_BAZEL_VERSION=7.0.0 diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index e4bb819..239f93a 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -20,7 +20,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-2019] bazel_mode: [workspace, module] - version: ["5.3.0", "6.0.0", "7.0.0rc5"] + version: ["5.3.0", "6.0.0", "7.0.0"] exclude: - version: 5.3.0 bazel_mode: module