mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
added a CI test for x86 32-bit + avx2 combination
which is expected to be quite rare, but nonetheless possible. This test is initially expected to fail, before integration of #4248 fix
This commit is contained in:
parent
a469e7c083
commit
9efb09749b
3 changed files with 14 additions and 3 deletions
13
.github/workflows/dev-short-tests.yml
vendored
13
.github/workflows/dev-short-tests.yml
vendored
|
|
@ -164,7 +164,7 @@ jobs:
|
|||
make clean
|
||||
bash tests/libzstd_builds.sh
|
||||
|
||||
gcc-make-tests-32bit:
|
||||
gcc-make-all-32bit:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
|
||||
|
|
@ -174,6 +174,17 @@ jobs:
|
|||
make libc6install
|
||||
CFLAGS="-Werror -m32" make -j all32
|
||||
|
||||
gcc-make-all-32bit-avx2:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
|
||||
- name: Make all, 32bit mode
|
||||
run: |
|
||||
sudo apt-get -qqq update
|
||||
make libc6install
|
||||
CFLAGS="-Werror -m32 -mavx2" make -j all32
|
||||
|
||||
|
||||
gcc-8-make:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue