1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-08 17:22:10 +03:00

Merge pull request #4312 from Cyan4973/musl_ci

introduce ZSTD_USE_C90_QSORT
This commit is contained in:
Yann Collet
2025-02-27 14:27:21 -08:00
committed by GitHub
3 changed files with 23 additions and 7 deletions

View File

@@ -684,6 +684,17 @@ jobs:
make -C programs zstd-pgo
./programs/zstd -b
musl-build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
- name: Install musl-tools
run: |
sudo apt install -y musl-tools
- name: Compile the project with musl-gcc
run: |
CC=musl-gcc CPPFLAGS=-DZSTD_USE_C90_QSORT make -j V=1 zstd
intel-cet-compatibility:
runs-on: ubuntu-latest
steps: