summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-05-06 19:18:36 +0200
committerThomas Haller <thaller@redhat.com>2022-05-09 09:02:28 +0200
commit8025547eae5143435fb09b627aa25da2f7e1466a (patch)
tree2728588f46b95899d25e9526a6f5dea751b4af37 /.github/workflows/ci.yml
parent7efeca2d575678c037850e8f27de9b10969c508f (diff)
downloadlibnl-8025547eae5143435fb09b627aa25da2f7e1466a.tar.gz
github: export NLTST_SEED_RAND= to randomize unit tests
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3f5eeb0d..265b1d89 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -43,11 +43,14 @@ jobs:
run: make -j 5 check-progs
- name: Run Unit Tests
- run: make -j 5 check
+ run: |
+ export NLTST_SEED_RAND=
+ make -j 5 check
- name: Run Unit Tests w/Valgrind
run: |
set -x
+ export NLTST_SEED_RAND=
CK_FORK=no libtool --mode=execute valgrind --error-exitcode=66 --leak-check=full -s --show-leak-kinds=all ./tests/check-all
CK_FORK=no libtool --mode=execute valgrind --error-exitcode=66 --leak-check=full -s --show-leak-kinds=all ./tests/check-direct
shell: bash
@@ -88,6 +91,7 @@ jobs:
../configure --disable-static
make -j 5
make -j 5 check-progs
+ export NLTST_SEED_RAND=
make -j 5 check
- run: echo "🍏 This job's status is ${{ job.status }}."