15
15
16
16
jobs :
17
17
gcc-compile-with-make :
18
- runs-on : ubuntu-20 .04 # https://github.com/actions/runner-images
18
+ runs-on : ubuntu-22 .04 # https://github.com/actions/runner-images
19
19
steps :
20
20
- uses : actions/checkout@v2
21
21
- uses : ./.github/actions/install-essential-dependences
27
27
make -j ${{env.proc_num}}
28
28
29
29
gcc-compile-with-cmake :
30
- runs-on : ubuntu-20 .04
30
+ runs-on : ubuntu-22 .04
31
31
steps :
32
32
- uses : actions/checkout@v2
33
33
- uses : ./.github/actions/install-essential-dependences
@@ -43,19 +43,19 @@ jobs:
43
43
make -j ${{env.proc_num}}
44
44
45
45
gcc-compile-with-bazel :
46
- runs-on : ubuntu-20 .04
46
+ runs-on : ubuntu-22 .04
47
47
steps :
48
48
- uses : actions/checkout@v2
49
49
- run : bazel build --verbose_failures -- //... -//example/...
50
50
51
51
gcc-compile-with-boringssl :
52
- runs-on : ubuntu-20 .04
52
+ runs-on : ubuntu-22 .04
53
53
steps :
54
54
- uses : actions/checkout@v2
55
55
- run : bazel build --verbose_failures --define with_mesalink=false --define with_glog=true --define with_thrift=true --define BRPC_WITH_BORINGSSL=true -- //... -//example/...
56
56
57
57
gcc-compile-with-make-all-options :
58
- runs-on : ubuntu-20 .04
58
+ runs-on : ubuntu-22 .04
59
59
steps :
60
60
- uses : actions/checkout@v2
61
61
- uses : ./.github/actions/install-all-dependences
67
67
make -j ${{env.proc_num}}
68
68
69
69
gcc-compile-with-cmake-all-options :
70
- runs-on : ubuntu-20 .04
70
+ runs-on : ubuntu-22 .04
71
71
steps :
72
72
- uses : actions/checkout@v2
73
73
- uses : ./.github/actions/install-all-dependences
@@ -83,13 +83,13 @@ jobs:
83
83
make -j ${{env.proc_num}}
84
84
85
85
gcc-compile-with-bazel-all-options :
86
- runs-on : ubuntu-20 .04
86
+ runs-on : ubuntu-22 .04
87
87
steps :
88
88
- uses : actions/checkout@v2
89
89
- run : bazel build --verbose_failures --define with_mesalink=false --define with_glog=true --define with_thrift=true --define with_debug_bthread_sche_safety=true --define with_debug_lock=true -- //... -//example/...
90
90
91
91
clang-compile-with-make :
92
- runs-on : ubuntu-20 .04
92
+ runs-on : ubuntu-22 .04
93
93
steps :
94
94
- uses : actions/checkout@v2
95
95
- uses : ./.github/actions/install-essential-dependences
@@ -101,7 +101,7 @@ jobs:
101
101
make -j ${{env.proc_num}}
102
102
103
103
clang-compile-with-cmake :
104
- runs-on : ubuntu-20 .04
104
+ runs-on : ubuntu-22 .04
105
105
steps :
106
106
- uses : actions/checkout@v2
107
107
- uses : ./.github/actions/install-essential-dependences
@@ -117,19 +117,19 @@ jobs:
117
117
make -j ${{env.proc_num}}
118
118
119
119
clang-compile-with-bazel :
120
- runs-on : ubuntu-20 .04
120
+ runs-on : ubuntu-22 .04
121
121
steps :
122
122
- uses : actions/checkout@v2
123
- - run : bazel build --verbose_failures --action_env=CC=clang-12 -- //... -//example/...
123
+ - run : bazel build --verbose_failures --action_env=CC=clang -- //... -//example/...
124
124
125
125
clang-compile-with-boringssl :
126
- runs-on : ubuntu-20 .04
126
+ runs-on : ubuntu-22 .04
127
127
steps :
128
128
- uses : actions/checkout@v2
129
- - run : bazel build --verbose_failures --action_env=CC=clang-12 --define with_mesalink=false --define with_glog=true --define with_thrift=true --define BRPC_WITH_BORINGSSL=true -- //... -//example/...
129
+ - run : bazel build --verbose_failures --action_env=CC=clang --define with_mesalink=false --define with_glog=true --define with_thrift=true --define BRPC_WITH_BORINGSSL=true -- //... -//example/...
130
130
131
131
clang-compile-with-make-all-options :
132
- runs-on : ubuntu-20 .04
132
+ runs-on : ubuntu-22 .04
133
133
steps :
134
134
- uses : actions/checkout@v2
135
135
- uses : ./.github/actions/install-all-dependences
@@ -141,7 +141,7 @@ jobs:
141
141
make -j ${{env.proc_num}}
142
142
143
143
clang-compile-with-cmake-all-options :
144
- runs-on : ubuntu-20 .04
144
+ runs-on : ubuntu-22 .04
145
145
steps :
146
146
- uses : actions/checkout@v2
147
147
- uses : ./.github/actions/install-all-dependences
@@ -157,19 +157,19 @@ jobs:
157
157
make -j ${{env.proc_num}}
158
158
159
159
clang-compile-with-bazel-all-options :
160
- runs-on : ubuntu-20 .04
160
+ runs-on : ubuntu-22 .04
161
161
steps :
162
162
- uses : actions/checkout@v2
163
- - run : bazel build --verbose_failures --action_env=CC=clang-12 --define with_mesalink=false --define with_glog=true --define with_thrift=true --define with_debug_bthread_sche_safety=true --define with_debug_lock=true -- //... -//example/...
163
+ - run : bazel build --verbose_failures --action_env=CC=clang --define with_mesalink=false --define with_glog=true --define with_thrift=true --define with_debug_bthread_sche_safety=true --define with_debug_lock=true -- //... -//example/...
164
164
165
165
clang-unittest :
166
- runs-on : ubuntu-20 .04
166
+ runs-on : ubuntu-22 .04
167
167
steps :
168
168
- uses : actions/checkout@v2
169
169
- uses : ./.github/actions/install-essential-dependences
170
170
- uses : ./.github/actions/init-ut-make-config
171
171
with :
172
- options : --cc=clang --cxx=clang++ --with-bthread-tracer
172
+ options : --cc=clang-12 --cxx=clang++-12 --with-bthread-tracer
173
173
- name : compile tests
174
174
run : |
175
175
cat config.mk
0 commit comments