File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -16,22 +16,20 @@ jobs:
16
16
test :
17
17
name : Test ZSTD module (opt)
18
18
runs-on :
19
- labels : ubuntu-22.04-64core
19
+ labels : ubuntu-22.04
20
20
timeout-minutes : 600
21
21
continue-on-error : true
22
22
steps :
23
23
- uses : actions/checkout@v2
24
24
25
- - name : Restore Nightly Bazel Cache
26
- uses : actions/cache/restore@v4
27
- with :
28
- path : " ~/.cache/bazel"
29
- key : bazel-cache-nightly-${{ runner.os }}-${{ github.sha }}
30
- restore-keys : bazel-cache-nightly-${{ runner.os }}-
31
-
32
25
- name : Install dependencies via apt
33
26
run : sudo apt-get install python3-distutils python3-dev python-is-python3 libtinfo5 build-essential liblapack-dev libblas-dev gfortran
34
27
28
+ - name : Install Bazel
29
+ run : |
30
+ wget https://github.com/bazelbuild/bazelisk/releases/download/v1.20.0/bazelisk-linux-amd64 -O /usr/local/bin/bazel
31
+ chmod +x /usr/local/bin/bazel
32
+
35
33
- name : Bazel Build Tools (opt)
36
34
run : |
37
35
bazel build -c opt --test_output=errors -- //xls/dslx:interpreter_main //xls/dslx/ir_convert:ir_converter_main //xls/tools:opt_main //xls/tools:codegen_main
You can’t perform that action at this time.
0 commit comments