@@ -22,12 +22,14 @@ jobs:
22
22
23
23
steps :
24
24
- uses : actions/checkout@v4
25
+ -
uses :
bazel-contrib/[email protected]
26
+ with :
27
+ bazelisk-cache : true
28
+ disk-cache : ${{ github.workflow }}
29
+ repository-cache : true
30
+ bazelisk-version : 1.x
25
31
- name : Checkout submodules
26
32
run : git submodule update --init --recursive
27
- - name : Install Bazel on CI
28
- run : |
29
- wget https://github.com/bazelbuild/bazel/releases/download/5.3.0/bazel_5.3.0-linux-x86_64.deb
30
- sudo dpkg -i bazel_5.3.0-linux-x86_64.deb
31
33
- name : Install requirements
32
34
run : |
33
35
python3 -m pip install -r requirements.txt
@@ -51,16 +53,18 @@ jobs:
51
53
52
54
steps :
53
55
- uses : actions/checkout@v4
56
+ -
uses :
bazel-contrib/[email protected]
57
+ with :
58
+ bazelisk-cache : true
59
+ disk-cache : ${{ github.workflow }}
60
+ repository-cache : true
61
+ bazelisk-version : 1.x
54
62
- name : Checkout submodules
55
63
run : git submodule update --init --recursive
56
- - name : Install Bazel on CI
57
- run : |
58
- wget https://github.com/bazelbuild/bazel/releases/download/5.3.0/bazel_5.3.0-linux-x86_64.deb
59
- sudo dpkg -i bazel_5.3.0-linux-x86_64.deb
60
64
- name : Install requirements
61
65
run : |
62
66
python3 -m pip install -r requirements.txt
63
- - name : Upgrade libc
67
+ - name : Upgrade libc
64
68
# An LLVM update broke this test, fix per is https://bugs.llvm.org/show_bug.cgi?id=27310.
65
69
run : |
66
70
sudo apt update
@@ -69,19 +73,21 @@ jobs:
69
73
run : |
70
74
bazel test --config=avx --config=openmp \
71
75
--config=${{ matrix.sanitizer_opt }} tests:all
72
-
76
+
73
77
test-mem :
74
78
name : Test with tcmalloc
75
79
runs-on : ubuntu-20.04
76
80
77
81
steps :
78
82
- uses : actions/checkout@v4
83
+ -
uses :
bazel-contrib/[email protected]
84
+ with :
85
+ bazelisk-cache : true
86
+ disk-cache : ${{ github.workflow }}
87
+ repository-cache : true
88
+ bazelisk-version : 1.x
79
89
- name : Checkout submodules
80
90
run : git submodule update --init --recursive
81
- - name : Install Bazel on CI
82
- run : |
83
- wget https://github.com/bazelbuild/bazel/releases/download/5.3.0/bazel_5.3.0-linux-x86_64.deb
84
- sudo dpkg -i bazel_5.3.0-linux-x86_64.deb
85
91
- name : Install requirements
86
92
run : |
87
93
python3 -m pip install -r requirements.txt
0 commit comments