File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 26
26
required : false
27
27
type : string
28
28
default : ' '
29
+ caching :
30
+ description : Toggle caching of Bazel
31
+ required : false
32
+ type : boolean
33
+ default : true
29
34
cache-key :
30
35
description : Bazel disk cache key
31
36
required : false
86
91
with :
87
92
java-version : ${{ inputs.java-version }}
88
93
distribution : ' temurin'
89
- - name : Setup Bazel
90
-
94
+ - name : Setup Bazel with caching
95
+ if : inputs.caching
96
+
91
97
with :
92
98
bazelisk-cache : true
93
99
bazelrc : common --color=yes
@@ -100,6 +106,11 @@ jobs:
100
106
pypi__pip: py/requirements_lock.txt
101
107
ruby: ${{ inputs.os == 'windows' && 'false' || 'rb/.ruby-version' }}
102
108
repository-cache : true
109
+ - name : Setup Bazel without caching
110
+ if : inputs.caching == false
111
+
112
+ with :
113
+ bazelrc : common --color=yes
103
114
- name : Setup Fluxbox and Xvfb
104
115
if : inputs.os == 'ubuntu' && inputs.browser != ''
105
116
run : |
Original file line number Diff line number Diff line change 14
14
uses : ./.github/workflows/bazel.yml
15
15
with :
16
16
name : Check format script run
17
- cache-key : rbe
17
+ caching : false
18
18
ruby-version : jruby-9.4.5.0
19
19
run : ./scripts/github-actions/check-format.sh
20
20
23
23
if : github.repository_owner == 'seleniumhq'
24
24
uses : ./.github/workflows/bazel.yml
25
25
with :
26
- # TODO: experiment with turning off caches
27
26
name : All RBE tests
28
- cache-key : rbe
27
+ caching : false
29
28
ruby-version : jruby-9.4.5.0
30
29
run : ./scripts/github-actions/ci-build.sh
You can’t perform that action at this time.
0 commit comments