summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLéon <levi486@gmail.com>2022-02-03 09:08:38 (GMT)
committerGitHub <noreply@github.com>2022-02-03 09:08:38 (GMT)
commita0d6d09f3309e50d58e826b61cd6915d4e01c1ce (patch)
treea388fb70583ba6984af211e5514d91f882e1402a /.github
parent02d04663cb26b6cfca78849387be8a4298548156 (diff)
parent1da033e601ca5bd1e91a2bb13702ce6368be6de7 (diff)
downloadlz4-a0d6d09f3309e50d58e826b61cd6915d4e01c1ce.zip
lz4-a0d6d09f3309e50d58e826b61cd6915d4e01c1ce.tar.gz
lz4-a0d6d09f3309e50d58e826b61cd6915d4e01c1ce.tar.bz2
Merge branch 'lz4:dev' into dev
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5c0afb1..fe9f479 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -236,6 +236,13 @@ jobs:
- name: LZ4 frame test (32-bit)
run: make V=1 -C tests test-frametest32
+ lz4-memory-usage:
+ name: test different values of LZ4_MEMORY_USAGE
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2 # https://github.com/actions/checkout
+ - name: LZ4_MEMORY_USAGE
+ run: make V=1 -C tests test-compile-with-lz4-memory-usage
# Custom LZ4_DISTANCE_MAX ; lz4-wlib (CLI linked to dynamic library); LZ4_USER_MEMORY_FUNCTIONS
lz4-custom-distance:
@@ -244,7 +251,7 @@ jobs:
steps:
- uses: actions/checkout@v2 # https://github.com/actions/checkout
- - name: custom LZ4_DISTANCE_MAX
+ - name: custom LZ4_DISTANCE_MAX; test LZ4_USER_MEMORY_FUNCTIONS
run: |
MOREFLAGS='-DLZ4_DISTANCE_MAX=8000' make V=1 check
make V=1 clean
@@ -392,7 +399,6 @@ jobs:
- name: unicode lint
run: bash ./tests/unicode_lint.sh
-
lz4-examples:
name: make examples
runs-on: ubuntu-latest