Skip to content

Commit

Permalink
wip: update to gcc 14
Browse files Browse the repository at this point in the history
  • Loading branch information
0-Sacha committed Dec 1, 2024
1 parent 72b478a commit 9303921
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .buildkite/linux_amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ agents:
steps:
- label: ":bazel: Build and Test on gcc (W asan)"
commands:
- CC=gcc bazelisk build --features=asan //:StreamFormatTests
- CC=gcc bazelisk test --features=asan //:StreamFormatTests
- CC=gcc-14 bazelisk build --features=asan //:StreamFormatTests
- CC=gcc-14 bazelisk test --features=asan //:StreamFormatTests

- label: ":bazel: Build and Test on Clang (W asan)"
commands:
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/StreamFormat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,15 @@ jobs:
with:
path: "~/.cache/bazel"
key: bazel
- name: Install Gcc 14
run: |
sudo apt install gcc-14
- name: Version
run: gcc --version
run: gcc-14 --version
- name: Building...
run: CC=gcc bazelisk build //:StreamFormatTests
run: CC=gcc-14 bazelisk build //:StreamFormatTests
- name: Testing... (W asan)
run: CC=gcc bazelisk test --features=asan //:StreamFormatTests
run: CC=gcc-14 bazelisk test --features=asan //:StreamFormatTests

ubuntu-latest-clang:
runs-on: ubuntu-latest
Expand All @@ -66,7 +69,7 @@ jobs:
with:
path: "~/.cache/bazel"
key: bazel
- name: Install clang
- name: Install clang 20
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
Expand Down

0 comments on commit 9303921

Please sign in to comment.