Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,15 @@ jobs:
bazel_use_module:
name: Build Bazel example
runs-on: "ubuntu-22.04"
strategy:
fail-fast: false
matrix:
bazel_version: ["7.*", "8.*", "9.*"]
steps:
- uses: actions/checkout@v4
- name: Build
env:
USE_BAZEL_VERSION: ${{ matrix.bazel_version }}
run: |
cd examples/bazel
bazelisk build --lockfile_mode=off //...
3 changes: 3 additions & 0 deletions release_checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Before doing the release, make sure that the project is in good state:
- Triage issues – make sure that all issues are labelled.
- Check for release-blocking bugs. All bugs which results in a wrong result of the evaluation are release-blocking.
- Go through the open PRs – consider merging any outstanding ones. Do not merge big changes right before the release.
- Check for new major Bazel versions (https://bazel.build/release), update
`.github/workflows/build_and_test.yml` "Build Bazel example" job to check all actively maintained Bazel versions
and confirm that it stays green.
- Sync google/go-jsonnet and google/jsonnet
1. Check out master from both
1. Use the `update_cpp_jsonnet.sh` script in the go-jsonnet repository to sync it to jsonnet master.
Expand Down
Loading