From d1013d5ccefcc15affbf9b95f5329171aec196cd Mon Sep 17 00:00:00 2001 From: Olof hagsand Date: Wed, 16 Jun 2021 14:21:31 +0200 Subject: [PATCH] github actions: split into separate runs --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8daac8d..7e4c7607 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,9 +29,11 @@ jobs: run: sudo make install - name: ldconfig run: sudo ldconfig - - name: prepare test + - name: prepare test1 run: echo "#!/usr/bin/env bash" > test/site.sh - run: echo "IPv6=true" >> test/site.sh + - name: prepare test2 + run: echo "IPv6=true" >> test/site.sh + - name: prepare test3 run: echo "SKIPLIST=\"test_api.sh test_client.sh test_c++.sh test_install.sh test_privileges.sh\"" >> test/site.sh - name: test run: (cd test; ./all.sh)