Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 18 additions & 7 deletions .github/workflows/dev-long-tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dev-long-tests
# Tests longer than 10mn
# Tests generally longer than 10mn

concurrency:
group: long-${{ github.ref }}
Expand All @@ -12,14 +12,15 @@ on:
permissions: read-all

jobs:
# lasts ~7mn
make-all:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
- name: make all
run: make all

# lasts ~24mn
# lasts ~19mn
make-test:
runs-on: ubuntu-latest
env:
Expand All @@ -33,15 +34,15 @@ jobs:
make -j zstd
./tests/test_process_substitution.bash ./zstd

# lasts ~26mn
# lasts ~16mn
make-test-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
- name: make test on macos
run: make test

# lasts ~24mn
# lasts ~10mn
make-test-32bit:
runs-on: ubuntu-latest
env:
Expand All @@ -56,13 +57,24 @@ jobs:
make clean
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:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
- name: no intrinsics fuzztest
run: MOREFLAGS="-DZSTD_NO_INTRINSICS" make -C tests fuzztest

# lasts ~8mn
tsan-zstreamtest:
runs-on: ubuntu-latest
steps:
Expand All @@ -77,15 +89,14 @@ jobs:
- name: ub + address sanitizer on zstreamtest
run: CC=clang make uasan-test-zstream

# lasts ~15mn
# lasts ~11mn
tsan-fuzztest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
- name: thread sanitizer fuzztest
run: CC=clang make tsan-fuzztest


big-tests-zstreamtest32:
runs-on: ubuntu-latest
steps:
Expand All @@ -96,7 +107,7 @@ jobs:
make libc6install
CC=clang make -C tests test-zstream32 FUZZER_FLAGS="--big-tests"

# lasts ~23mn
# lasts ~13mn
gcc-8-asan-ubsan-testzstd:
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions tests/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ fullbench-lib
fuzzer
fuzzer32
fuzzer-dll
largeDictionary
zbufftest
zbufftest32
zbufftest-dll
Expand Down
Loading