summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2022-07-12 17:41:56 (GMT)
committerYann Collet <cyan@fb.com>2022-07-12 17:41:56 (GMT)
commitd577589c31c2681e7fa097a7024317d128fd210e (patch)
tree89ccecce2bd98b8162f7e27ed6f99d83ae5c646b /.github
parentd64575391967af5fbbc3d991ecb9035fb3460531 (diff)
downloadlz4-d577589c31c2681e7fa097a7024317d128fd210e.zip
lz4-d577589c31c2681e7fa097a7024317d128fd210e.tar.gz
lz4-d577589c31c2681e7fa097a7024317d128fd210e.tar.bz2
added abiTests to github
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 82ac2d1..f8c49d4 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -222,6 +222,21 @@ jobs:
run: make V=1 -C tests versionsTest
+ lz4-abi:
+ name: LZ4 inter-versions ABI test
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2 # https://github.com/actions/checkout
+
+ - name: apt-get install
+ run: |
+ sudo apt-get update
+ sudo apt-get install gcc-multilib
+
+ - name: make -C tests abiTests
+ run: make V=1 -C tests abiTests
+
+
lz4-frame:
name: LZ4 frame test
runs-on: ubuntu-latest