• Home
  • Raw
  • Download

Lines Matching +full:regression +full:- +full:test

5     - dev
6 permissions: read-all
8 short-tests-0:
9 runs-on: ubuntu-latest
12 image: fbopensource/zstd-circleci-primary:0.0.1
13 options: --entrypoint /bin/bash
15 - uses: actions/checkout@v4
16 - name: Install Dependencies
18 sudo apt-get update
19 sudo apt-get install libcurl4-gnutls-dev
20 - name: Test
22 ./tests/test-license.py
23 cc -v
24 CFLAGS="-O0 -Werror -pedantic" make allmost; make clean
27 make -j regressiontest; make clean
30 short-tests-1:
31 runs-on: ubuntu-latest
34 image: fbopensource/zstd-circleci-primary:0.0.1
35 options: --entrypoint /bin/bash
37 - uses: actions/checkout@v4
38 - name: Install Dependencies
40 sudo apt-get update
41-get install gcc-powerpc-linux-gnu gcc-arm-linux-gnueabi gcc-aarch64-linux-gnu libc6-dev-ppc64-pow…
42 - name: Test
43 run: |-
50 make -C tests test-legacy test-longmatch; make clean
51 make -C lib libzstd-nomt; make clean
52 regression-test:
53 runs-on: ubuntu-latest
56 image: fbopensource/zstd-circleci-primary:0.0.1
57 options: --entrypoint /bin/bash
59 CIRCLE_ARTIFACTS: "/tmp/circleci-artifacts"
61 - uses: actions/checkout@v4
62 - name: restore_cache
65 key: regression-cache-{{ checksum "tests/regression/data.c" }}-v0
66 path: tests/regression/cache
67 restore-keys: regression-cache-{{ checksum "tests/regression/data.c" }}-v0
68 - name: Install Dependencies
70 sudo apt-get update
71 sudo apt-get install libcurl4-gnutls-dev
72 - name: Regression Test
74 make -C programs zstd
75 make -C tests/regression test
76 mkdir -p $CIRCLE_ARTIFACTS
77 ./tests/regression/test \
78 --cache tests/regression/cache \
79 --output $CIRCLE_ARTIFACTS/results.csv \
80 --zstd programs/zstd
83 echo " download /tmp/circleci-artifacts/results.csv, and if they "
85 echo "> diff tests/regression/results.csv $CIRCLE_ARTIFACTS/results.csv"
86 diff tests/regression/results.csv $CIRCLE_ARTIFACTS/results.csv
87 - uses: actions/upload-artifact@v4
89 path: "/tmp/circleci-artifacts"