Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,21 +122,21 @@ jobs:
node-version: ${{ inputs.node-version }}
- name: Setup Bazel with caching
if: inputs.caching
uses: bazel-contrib/setup-bazel@0.13.0
uses: calebzulawski/setup-bazel@feature/disk-cache
with:
bazelisk-cache: true
bazelrc: common --color=yes
cache-version: 2
disk-cache: ${{ inputs.cache-key }}
cache-prefix: 3-${{ github.job }}-${{ inputs.os }}-${{ inputs.cache-key }}
external-cache: |
name: ${{ inputs.cache-key }}
manifest:
crates: rust/Cargo.Bazel.lock
rules_ruby++ruby+ruby: ${{ inputs.os == 'windows' && 'false' || 'rb/.ruby-version' }}
disk-cache: true
repository-cache: true
- name: Setup Bazel without caching
if: inputs.caching == false
uses: bazel-contrib/setup-bazel@0.13.0
uses: calebzulawski/setup-bazel@feature/disk-cache
with:
bazelrc: common --color=yes
- name: Setup Fluxbox and Xvfb
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,16 @@ jobs:
with:
fetch-depth: 50
- name: Setup Bazel
uses: bazel-contrib/setup-bazel@0.13.0
uses: calebzulawski/setup-bazel@feature/disk-cache
with:
bazelisk-cache: true
cache-version: 2
bazelrc: common --color=yes
cache-prefix: 3-${{ github.job }}
external-cache: |
name: ci-check
name: check
manifest:
crates: rust/Cargo.Bazel.lock
rules_ruby~~ruby~ruby: rb/.ruby-version
rules_ruby++ruby+ruby: ${{ runner.os == 'windows' && 'false' || 'rb/.ruby-version' }}
repository-cache: true
- name: Check Bazel targets
id: check-targets
Expand Down
2 changes: 1 addition & 1 deletion rb/.ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.6
jruby-9.4.12.0
Loading