File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,19 @@ jobs:
34
34
runs-on : ubuntu-latest
35
35
steps :
36
36
- uses : actions/checkout@v1
37
-
38
37
- name : Mount bazel cache
39
38
uses : actions/cache@v3
40
39
with :
41
40
path : " /home/runner/.cache/bazel"
42
41
key : bazel
43
-
42
+ - name : Set up Python
43
+ uses : actions/setup-python@v5
44
+ with :
45
+ python-version : ' 3.10'
44
46
- name : build
45
- run : bazel build ...
47
+ shell : bash
48
+ env :
49
+ CC : gcc-11
50
+ CXX : g++-11
51
+ run : |
52
+ bazel build ...
Original file line number Diff line number Diff line change 39
39
with :
40
40
path : " /home/runner/.cache/bazel"
41
41
key : bazel
42
+ - name : Set up Python
43
+ uses : actions/setup-python@v5
44
+ with :
45
+ python-version : ' 3.10'
42
46
- name : build
43
- run : bazel test ...
47
+ shell : bash
48
+ env :
49
+ CC : gcc-11
50
+ CXX : g++-11
51
+ run : |
52
+ bazel build ...
You can’t perform that action at this time.
0 commit comments