Skip to content

Commit 86a0040

Browse files
committed
[rb] Disable Ruby cache on Windows
1 parent 907f2df commit 86a0040

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/bazel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
java-version: ${{ inputs.java-version }}
8383
distribution: 'temurin'
8484
- name: Setup Bazel
85-
uses: p0deje/setup-bazel@0.3.2
85+
uses: p0deje/setup-bazel@0.4.0
8686
with:
8787
bazelisk-cache: true
8888
bazelrc: common --color=yes
@@ -93,7 +93,7 @@ jobs:
9393
crates: rust/Cargo.Bazel.lock
9494
npm: package-lock.json
9595
pypi__pip: py/requirements_lock.txt
96-
ruby: rb/.ruby-version
96+
ruby: ${{ inputs.os == 'windows' && 'false' || 'rb/.ruby-version' }}
9797
repository-cache: true
9898
- name: Setup Fluxbox and Xvfb
9999
if: inputs.os == 'ubuntu' && inputs.browser != ''

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
fetch-depth: 50
2727
- name: Setup Bazel
28-
uses: p0deje/setup-bazel@0.3.2
28+
uses: p0deje/setup-bazel@0.4.0
2929
with:
3030
bazelisk-cache: true
3131
external-cache: |
@@ -34,7 +34,7 @@ jobs:
3434
crates: rust/Cargo.Bazel.lock
3535
npm: package-lock.json
3636
pypi__pip: py/requirements_lock.txt
37-
rules_ruby_dist: rb/ruby_version.bzl
37+
ruby: rb/.ruby-version
3838
repository-cache: true
3939
- name: Check Bazel targets
4040
id: check-targets

0 commit comments

Comments
 (0)