Skip to content

Commit 4b1db47

Browse files
committed
CI: fix workflow for GHA
Signed-off-by: Pawel Czarnecki <[email protected]>
1 parent c89bdea commit 4b1db47

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/modules-zstd.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,20 @@ jobs:
1616
test:
1717
name: Test ZSTD module (opt)
1818
runs-on:
19-
labels: ubuntu-22.04-64core
19+
labels: ubuntu-22.04
2020
timeout-minutes: 600
2121
continue-on-error: true
2222
steps:
2323
- uses: actions/checkout@v2
2424

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-
3225
- name: Install dependencies via apt
3326
run: sudo apt-get install python3-distutils python3-dev python-is-python3 libtinfo5 build-essential liblapack-dev libblas-dev gfortran
3427

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+
3533
- name: Bazel Build Tools (opt)
3634
run: |
3735
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

0 commit comments

Comments
 (0)