1515
1616jobs :
1717 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
1919 steps :
2020 - uses : actions/checkout@v2
2121 - uses : ./.github/actions/install-essential-dependences
2727 make -j ${{env.proc_num}}
2828
2929 gcc-compile-with-cmake :
30- runs-on : ubuntu-20 .04
30+ runs-on : ubuntu-22 .04
3131 steps :
3232 - uses : actions/checkout@v2
3333 - uses : ./.github/actions/install-essential-dependences
@@ -43,19 +43,19 @@ jobs:
4343 make -j ${{env.proc_num}}
4444
4545 gcc-compile-with-bazel :
46- runs-on : ubuntu-20 .04
46+ runs-on : ubuntu-22 .04
4747 steps :
4848 - uses : actions/checkout@v2
4949 - run : bazel build --verbose_failures -- //... -//example/...
5050
5151 gcc-compile-with-boringssl :
52- runs-on : ubuntu-20 .04
52+ runs-on : ubuntu-22 .04
5353 steps :
5454 - uses : actions/checkout@v2
5555 - run : bazel build --verbose_failures --define with_mesalink=false --define with_glog=true --define with_thrift=true --define BRPC_WITH_BORINGSSL=true -- //... -//example/...
5656
5757 gcc-compile-with-make-all-options :
58- runs-on : ubuntu-20 .04
58+ runs-on : ubuntu-22 .04
5959 steps :
6060 - uses : actions/checkout@v2
6161 - uses : ./.github/actions/install-all-dependences
6767 make -j ${{env.proc_num}}
6868
6969 gcc-compile-with-cmake-all-options :
70- runs-on : ubuntu-20 .04
70+ runs-on : ubuntu-22 .04
7171 steps :
7272 - uses : actions/checkout@v2
7373 - uses : ./.github/actions/install-all-dependences
@@ -83,13 +83,13 @@ jobs:
8383 make -j ${{env.proc_num}}
8484
8585 gcc-compile-with-bazel-all-options :
86- runs-on : ubuntu-20 .04
86+ runs-on : ubuntu-22 .04
8787 steps :
8888 - uses : actions/checkout@v2
8989 - 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/...
9090
9191 clang-compile-with-make :
92- runs-on : ubuntu-20 .04
92+ runs-on : ubuntu-22 .04
9393 steps :
9494 - uses : actions/checkout@v2
9595 - uses : ./.github/actions/install-essential-dependences
@@ -101,7 +101,7 @@ jobs:
101101 make -j ${{env.proc_num}}
102102
103103 clang-compile-with-cmake :
104- runs-on : ubuntu-20 .04
104+ runs-on : ubuntu-22 .04
105105 steps :
106106 - uses : actions/checkout@v2
107107 - uses : ./.github/actions/install-essential-dependences
@@ -117,19 +117,19 @@ jobs:
117117 make -j ${{env.proc_num}}
118118
119119 clang-compile-with-bazel :
120- runs-on : ubuntu-20 .04
120+ runs-on : ubuntu-22 .04
121121 steps :
122122 - 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/...
124124
125125 clang-compile-with-boringssl :
126- runs-on : ubuntu-20 .04
126+ runs-on : ubuntu-22 .04
127127 steps :
128128 - 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/...
130130
131131 clang-compile-with-make-all-options :
132- runs-on : ubuntu-20 .04
132+ runs-on : ubuntu-22 .04
133133 steps :
134134 - uses : actions/checkout@v2
135135 - uses : ./.github/actions/install-all-dependences
@@ -141,7 +141,7 @@ jobs:
141141 make -j ${{env.proc_num}}
142142
143143 clang-compile-with-cmake-all-options :
144- runs-on : ubuntu-20 .04
144+ runs-on : ubuntu-22 .04
145145 steps :
146146 - uses : actions/checkout@v2
147147 - uses : ./.github/actions/install-all-dependences
@@ -157,19 +157,19 @@ jobs:
157157 make -j ${{env.proc_num}}
158158
159159 clang-compile-with-bazel-all-options :
160- runs-on : ubuntu-20 .04
160+ runs-on : ubuntu-22 .04
161161 steps :
162162 - 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/...
164164
165165 clang-unittest :
166- runs-on : ubuntu-20 .04
166+ runs-on : ubuntu-22 .04
167167 steps :
168168 - uses : actions/checkout@v2
169169 - uses : ./.github/actions/install-essential-dependences
170170 - uses : ./.github/actions/init-ut-make-config
171171 with :
172- options : --cc=clang --cxx=clang++ --with-bthread-tracer
172+ options : --cc=clang-12 --cxx=clang++-12 --with-bthread-tracer
173173 - name : compile tests
174174 run : |
175175 cat config.mk
0 commit comments