Skip to content

Commit

Permalink
fix clang-pgo test
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyan4973 committed Jan 15, 2025
1 parent 92d1a7d commit 908a958
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/dev-short-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -615,26 +615,27 @@ jobs:
run: |
make clangbuild
clang-pgo:
gcc-pgo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
- name: Build PGO Zstd with Clang
- name: Build PGO Zstd with GCC
env:
CC: clang-14
LLVM_PROFDATA: llvm-profdata-14
CC: gcc
run: |
make -C programs zstd-pgo
./programs/zstd -b
gcc-pgo:
clang-pgo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
- name: Build PGO Zstd with GCC
- name: Build PGO Zstd with Clang
env:
CC: gcc
CC: clang
run: |
sudo apt install -y llvm
llvm-profdata --version
make -C programs zstd-pgo
./programs/zstd -b
Expand Down

0 comments on commit 908a958

Please sign in to comment.