aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2022-01-31 14:51:20 -0800
committerYann Collet <cyan@fb.com>2022-01-31 14:51:20 -0800
commit4f984e45a5a36c446d959e1c790d90cef5d5dcb8 (patch)
tree14b092852f4877522b6fdd058d56ef418b5e59fa /.github/workflows
parent379c1a10cad71b004a4fa95a482c47ca0fa18835 (diff)
downloadlz4-4f984e45a5a36c446d959e1c790d90cef5d5dcb8.tar.gz
added target test-compile-with-lz4-memory-usage
and run it in GA CI
Diffstat (limited to '.github/workflows')
-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 5c0afb18..fe9f4790 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