github actions: split into separate runs
This commit is contained in:
parent
8482bbffa9
commit
d1013d5cce
1 changed files with 4 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -29,9 +29,11 @@ jobs:
|
||||||
run: sudo make install
|
run: sudo make install
|
||||||
- name: ldconfig
|
- name: ldconfig
|
||||||
run: sudo ldconfig
|
run: sudo ldconfig
|
||||||
- name: prepare test
|
- name: prepare test1
|
||||||
run: echo "#!/usr/bin/env bash" > test/site.sh
|
run: echo "#!/usr/bin/env bash" > test/site.sh
|
||||||
|
- name: prepare test2
|
||||||
run: echo "IPv6=true" >> test/site.sh
|
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
|
run: echo "SKIPLIST=\"test_api.sh test_client.sh test_c++.sh test_install.sh test_privileges.sh\"" >> test/site.sh
|
||||||
- name: test
|
- name: test
|
||||||
run: (cd test; ./all.sh)
|
run: (cd test; ./all.sh)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue