Skip to content

Commit df5a7dd

Browse files
authored
Fix abseil-cpp gcc 13 compilation issue (#385)
Signed-off-by: Neil Shen <[email protected]>
1 parent 9fd33de commit df5a7dd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/unit-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ jobs:
3434

3535
rust:
3636
name: Test rust generation
37-
runs-on: ubuntu-latest
37+
# Pin to ubuntu-22.04 due to abseil-cpp gcc 13 compilation issue.
38+
runs-on: ubuntu-22.04
3839
steps:
3940
- name: Install protoc
4041
uses: arduino/setup-protoc@v1
@@ -46,4 +47,4 @@ jobs:
4647
with:
4748
toolchain: stable
4849
- name: Test
49-
run: make rust
50+
run: gcc --version && make rust

0 commit comments

Comments
 (0)