Skip to content

Commit

Permalink
wip: use universe repo for apt
Browse files Browse the repository at this point in the history
  • Loading branch information
0-Sacha committed Dec 1, 2024
1 parent 68b97fc commit 7d4684c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/StreamFormat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,17 @@ jobs:
with:
path: "~/.cache/bazel"
key: bazel
- name: Install Gcc 13
- name: Install Gcc 14
run: |
sudo apt install gcc-13
sudo add-apt-repository universe
sudo apt-get update
sudo apt install gcc-14
- name: Version
run: gcc-13 --version
run: gcc-14 --version
- name: Building...
run: CC=gcc-13 bazelisk build //:StreamFormatTests
run: CC=gcc-14 bazelisk build //:StreamFormatTests
- name: Testing... (W asan)
run: CC=gcc-13 bazelisk test --features=asan //:StreamFormatTests
run: CC=gcc-14 bazelisk test --features=asan //:StreamFormatTests

ubuntu-latest-clang:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7d4684c

Please sign in to comment.