Merge pull request #4416 from facebook/test_largeDictionary
added test-largeDictionary to dev-long CI script
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
name: dev-long-tests
|
name: dev-long-tests
|
||||||
# Tests longer than 10mn
|
# Tests generally longer than 10mn
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: long-${{ github.ref }}
|
group: long-${{ github.ref }}
|
||||||
@@ -12,6 +12,7 @@ on:
|
|||||||
permissions: read-all
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
# lasts ~7mn
|
||||||
make-all:
|
make-all:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@@ -19,7 +20,7 @@ jobs:
|
|||||||
- name: make all
|
- name: make all
|
||||||
run: make all
|
run: make all
|
||||||
|
|
||||||
# lasts ~24mn
|
# lasts ~19mn
|
||||||
make-test:
|
make-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
@@ -33,7 +34,7 @@ jobs:
|
|||||||
make -j zstd
|
make -j zstd
|
||||||
./tests/test_process_substitution.bash ./zstd
|
./tests/test_process_substitution.bash ./zstd
|
||||||
|
|
||||||
# lasts ~26mn
|
# lasts ~16mn
|
||||||
make-test-macos:
|
make-test-macos:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
steps:
|
steps:
|
||||||
@@ -41,7 +42,7 @@ jobs:
|
|||||||
- name: make test on macos
|
- name: make test on macos
|
||||||
run: make test
|
run: make test
|
||||||
|
|
||||||
# lasts ~24mn
|
# lasts ~10mn
|
||||||
make-test-32bit:
|
make-test-32bit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
@@ -56,6 +57,16 @@ jobs:
|
|||||||
make clean
|
make clean
|
||||||
CFLAGS="-m32 -O2" make -j test V=1
|
CFLAGS="-m32 -O2" make -j test V=1
|
||||||
|
|
||||||
|
# lasts ~7mn
|
||||||
|
test-largeDictionary:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
|
||||||
|
- name: largeDictionary
|
||||||
|
run: |
|
||||||
|
CFLAGS="-Werror -O3" make -j -C tests test-largeDictionary
|
||||||
|
|
||||||
|
# lasts ~9mn
|
||||||
no-intrinsics-fuzztest:
|
no-intrinsics-fuzztest:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@@ -63,6 +74,7 @@ jobs:
|
|||||||
- name: no intrinsics fuzztest
|
- name: no intrinsics fuzztest
|
||||||
run: MOREFLAGS="-DZSTD_NO_INTRINSICS" make -C tests fuzztest
|
run: MOREFLAGS="-DZSTD_NO_INTRINSICS" make -C tests fuzztest
|
||||||
|
|
||||||
|
# lasts ~8mn
|
||||||
tsan-zstreamtest:
|
tsan-zstreamtest:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@@ -77,7 +89,7 @@ jobs:
|
|||||||
- name: ub + address sanitizer on zstreamtest
|
- name: ub + address sanitizer on zstreamtest
|
||||||
run: CC=clang make uasan-test-zstream
|
run: CC=clang make uasan-test-zstream
|
||||||
|
|
||||||
# lasts ~15mn
|
# lasts ~11mn
|
||||||
tsan-fuzztest:
|
tsan-fuzztest:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@@ -85,7 +97,6 @@ jobs:
|
|||||||
- name: thread sanitizer fuzztest
|
- name: thread sanitizer fuzztest
|
||||||
run: CC=clang make tsan-fuzztest
|
run: CC=clang make tsan-fuzztest
|
||||||
|
|
||||||
|
|
||||||
big-tests-zstreamtest32:
|
big-tests-zstreamtest32:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@@ -96,7 +107,7 @@ jobs:
|
|||||||
make libc6install
|
make libc6install
|
||||||
CC=clang make -C tests test-zstream32 FUZZER_FLAGS="--big-tests"
|
CC=clang make -C tests test-zstream32 FUZZER_FLAGS="--big-tests"
|
||||||
|
|
||||||
# lasts ~23mn
|
# lasts ~13mn
|
||||||
gcc-8-asan-ubsan-testzstd:
|
gcc-8-asan-ubsan-testzstd:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ fullbench-lib
|
|||||||
fuzzer
|
fuzzer
|
||||||
fuzzer32
|
fuzzer32
|
||||||
fuzzer-dll
|
fuzzer-dll
|
||||||
|
largeDictionary
|
||||||
zbufftest
|
zbufftest
|
||||||
zbufftest32
|
zbufftest32
|
||||||
zbufftest-dll
|
zbufftest-dll
|
||||||
|
|||||||
Reference in New Issue
Block a user