mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 19:00:15 +00:00
CI/CD Fine tuning
Moved xenial script tests to After_script Find script files instead of hardcoded scripts
This commit is contained in:
parent
bccaa1bbee
commit
d67095f3ef
1 changed files with 5 additions and 22 deletions
27
.travis.yml
27
.travis.yml
|
@ -22,32 +22,14 @@ branches:
|
|||
jobs:
|
||||
allow_failures:
|
||||
- stage: lint
|
||||
|
||||
include:
|
||||
- stage: lint
|
||||
name: "Shellcheck lint"
|
||||
dist: linux
|
||||
script:
|
||||
- shellcheck autoinstall/install.sh
|
||||
- shellcheck scripts/backup.sh
|
||||
- shellcheck scripts/pivpn
|
||||
- shellcheck scripts/self_check.sh
|
||||
- shellcheck scripts/uninstall.sh
|
||||
- shellcheck scripts/update.sh
|
||||
- shellcheck scripts/openvpn/clientstat.sh
|
||||
- shellcheck scripts/openvpn/listOVPN.sh
|
||||
- shellcheck scripts/openvpn/makeOVPN.sh
|
||||
- shellcheck scripts/openvpn/pivpnDebug.sh
|
||||
- shellcheck scripts/openvpn/pivpn.sh
|
||||
- shellcheck scripts/openvpn/removeOVPN.sh
|
||||
- shellcheck scripts/wireguard/clientSTAT.sh
|
||||
- shellcheck scripts/wireguard/disableCONF.sh
|
||||
- shellcheck scripts/wireguard/enableCONF.sh
|
||||
- shellcheck scripts/wireguard/listCONF.sh
|
||||
- shellcheck scripts/wireguard/makeCONF.sh
|
||||
- shellcheck scripts/wireguard/pivpnDEBUG.sh
|
||||
- shellcheck scripts/wireguard/pivpn.sh
|
||||
- shellcheck scripts/wireguard/qrcodeCONF.sh
|
||||
- shellcheck scripts/wireguard/removeCONF.sh
|
||||
- find scripts/ -type f -exec shellcheck {} \;
|
||||
|
||||
- stage: test
|
||||
name: "OpenVPN Xenial & Commands"
|
||||
|
@ -59,6 +41,7 @@ jobs:
|
|||
- ./ciscripts/startup.sh -o
|
||||
script:
|
||||
- sudo ./auto_install/install.sh --unattended ciscripts/ci_openvpn.conf
|
||||
after_script:
|
||||
- systemctl status openvpn
|
||||
- pivpn add -n foo nopass -d 180
|
||||
- pivpn add -p "$RANDOM$RANDOM" -n bar -d 180
|
||||
|
@ -81,6 +64,8 @@ jobs:
|
|||
- ./ciscripts/startup.sh -w
|
||||
script:
|
||||
- sudo ./auto_install/install.sh --unattended ciscripts/ci_wireguard.conf
|
||||
after_script:
|
||||
- systemctl status wg-quick@wg0
|
||||
- pivpn add -n foo
|
||||
- pivpn -qr foo
|
||||
- pivpn -bk
|
||||
|
@ -88,8 +73,6 @@ jobs:
|
|||
- pivpn -l
|
||||
- pivpn -c
|
||||
- pivpn -r foo -y
|
||||
after_script:
|
||||
- systemctl status wg-quick@wg0
|
||||
after_fail:
|
||||
- sudo journalctl -xe
|
||||
|
||||
|
|
Loading…
Reference in a new issue