Attempt to fix race conditions with non-atomic file copy for worker jars #328
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- lucid-master | |
jobs: | |
build-lint-and-test: | |
runs-on: ${{ matrix.os }} | |
env: | |
BAZEL_VERSION: ${{ matrix.bazel_version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-24.04] | |
bazel_version: [lucidsoftware/8.1.999] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bazel-contrib/setup-bazel@0.9.0 | |
with: | |
bazelisk-version: 1.22.1 | |
- run: ./scripts/ci.sh build | |
- run: ./scripts/ci.sh lint | |
- run: ./scripts/ci.sh test |