mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 19:00:15 +00:00
First automated testing implementation
Added some builds on travis ci, Runs linting on All scripts installs OpenVPN and Wireguard on all supported ubuntu versions Checks if VPN is running after installed runs pivpn scripts
This commit is contained in:
parent
cae160ebf9
commit
26c0cf50cf
2 changed files with 181 additions and 1 deletions
178
.travis.yml
Normal file
178
.travis.yml
Normal file
|
@ -0,0 +1,178 @@
|
||||||
|
language: shell
|
||||||
|
|
||||||
|
addons:
|
||||||
|
hosts:
|
||||||
|
- pivpn.test
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- shellcheck
|
||||||
|
|
||||||
|
services:
|
||||||
|
- docker
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- lint
|
||||||
|
- test
|
||||||
|
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- test
|
||||||
|
- master
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
- stage: test
|
||||||
|
name: "OpenVPN Xenial & Commands"
|
||||||
|
dist: xenial
|
||||||
|
before_script:
|
||||||
|
- cat /etc/os-release
|
||||||
|
- uname -a
|
||||||
|
- sudo chmod +x ciscripts/startup.sh
|
||||||
|
- ./ciscripts/startup.sh -o
|
||||||
|
script:
|
||||||
|
- sudo ./auto_install/install.sh --unattended ciscripts/ci_openvpn.conf
|
||||||
|
- systemctl status openvpn
|
||||||
|
- pivpn add -n foo nopass -d 180
|
||||||
|
- pivpn add -p "$RANDOM$RANDOM" -n bar -d 180
|
||||||
|
- pivpn add -o -n foo
|
||||||
|
- pivpn -bk
|
||||||
|
- ls ~pi/pivpnbackup/ | grep backup
|
||||||
|
- pivpn -r foo -y
|
||||||
|
- pivpn -l
|
||||||
|
- pivpn -c
|
||||||
|
after_fail:
|
||||||
|
- sudo journalctl -xe
|
||||||
|
|
||||||
|
- stage: test
|
||||||
|
name: "Wireguard Xenial & Commands"
|
||||||
|
dist: xenial
|
||||||
|
before_script:
|
||||||
|
- cat /etc/os-release
|
||||||
|
- uname -a
|
||||||
|
- sudo chmod +x ciscripts/startup.sh
|
||||||
|
- ./ciscripts/startup.sh -w
|
||||||
|
script:
|
||||||
|
- sudo ./auto_install/install.sh --unattended ciscripts/ci_wireguard.conf
|
||||||
|
- pivpn add -n foo
|
||||||
|
- pivpn -qr foo
|
||||||
|
- pivpn -bk
|
||||||
|
- pivpn -l
|
||||||
|
- pivpn -c
|
||||||
|
- pivpn -r foo -y
|
||||||
|
after_script:
|
||||||
|
- systemctl status wg-quick@wg0
|
||||||
|
after_fail:
|
||||||
|
- sudo journalctl -xe
|
||||||
|
|
||||||
|
- stage: test
|
||||||
|
name: "OpenVPN Bionic & Commands"
|
||||||
|
dist: bionic
|
||||||
|
before_script:
|
||||||
|
- cat /etc/os-release
|
||||||
|
- uname -a
|
||||||
|
- sudo chmod +x ciscripts/startup.sh
|
||||||
|
- ./ciscripts/startup.sh -o
|
||||||
|
script:
|
||||||
|
- sudo ./auto_install/install.sh --unattended ciscripts/ci_openvpn.conf
|
||||||
|
- systemctl status openvpn
|
||||||
|
- pivpn add -n foo nopass -d 180
|
||||||
|
- pivpn add -p "$RANDOM$RANDOM" -n bar -d 180
|
||||||
|
- pivpn add -o -n foo
|
||||||
|
- pivpn -bk
|
||||||
|
- ls ~pi/pivpnbackup/ | grep backup
|
||||||
|
- pivpn -r foo -y
|
||||||
|
- pivpn -l
|
||||||
|
- pivpn -c
|
||||||
|
after_fail:
|
||||||
|
- sudo journalctl -xe
|
||||||
|
|
||||||
|
- stage: test
|
||||||
|
name: "Wireguard Bionic & Commands"
|
||||||
|
dist: bionic
|
||||||
|
before_script:
|
||||||
|
- cat /etc/os-release
|
||||||
|
- uname -a
|
||||||
|
- sudo apt update -y
|
||||||
|
- sudo chmod +x ciscripts/startup.sh
|
||||||
|
- ./ciscripts/startup.sh -w
|
||||||
|
script:
|
||||||
|
- sudo ./auto_install/install.sh --unattended ciscripts/ci_wireguard.conf
|
||||||
|
- systemctl status wg-quick@wg0
|
||||||
|
- pivpn add -n foo
|
||||||
|
- pivpn -qr foo
|
||||||
|
- pivpn -bk
|
||||||
|
- pivpn -l
|
||||||
|
- pivpn -c
|
||||||
|
- pivpn -r foo -y
|
||||||
|
after_fail:
|
||||||
|
- sudo journalctl -xe
|
||||||
|
|
||||||
|
- stage: test
|
||||||
|
name: "OpenVPN Focal & Commands"
|
||||||
|
dist: focal
|
||||||
|
before_script:
|
||||||
|
- cat /etc/os-release
|
||||||
|
- uname -a
|
||||||
|
- sudo chmod +x ciscripts/startup.sh
|
||||||
|
- ./ciscripts/startup.sh -o
|
||||||
|
script:
|
||||||
|
- sudo ./auto_install/install.sh --unattended ciscripts/ci_openvpn.conf
|
||||||
|
- systemctl status openvpn
|
||||||
|
- pivpn add -n foo nopass -d 180
|
||||||
|
- pivpn add -p "$RANDOM$RANDOM" -n bar -d 180
|
||||||
|
- pivpn add -o -n foo
|
||||||
|
- pivpn -bk
|
||||||
|
- ls ~pi/pivpnbackup/ | grep backup
|
||||||
|
- pivpn -r foo -y
|
||||||
|
- pivpn -l
|
||||||
|
- pivpn -c
|
||||||
|
after_fail:
|
||||||
|
- sudo journalctl -xe
|
||||||
|
|
||||||
|
- stage: test
|
||||||
|
name: "Wireguard Focal & Commands"
|
||||||
|
dist: focal
|
||||||
|
before_script:
|
||||||
|
- cat /etc/os-release
|
||||||
|
- uname -a
|
||||||
|
- sudo chmod +x ciscripts/startup.sh
|
||||||
|
- ./ciscripts/startup.sh -w
|
||||||
|
script:
|
||||||
|
- sudo ./auto_install/install.sh --unattended ciscripts/ci_wireguard.conf
|
||||||
|
- systemctl status wg-quick@wg0
|
||||||
|
- pivpn add -n foo
|
||||||
|
- pivpn -qr foo
|
||||||
|
- pivpn -bk
|
||||||
|
- pivpn -l
|
||||||
|
- pivpn -c
|
||||||
|
- pivpn -r foo -y
|
||||||
|
after_fail:
|
||||||
|
- sudo journalctl -xe
|
|
@ -1,6 +1,8 @@
|
||||||
![WireGuard + OpenVPN logo](logos.jpg)
|
![WireGuard + OpenVPN logo](logos.jpg)
|
||||||
|
|
||||||
**[Is pivpn.io down?](https://status.pivpn.io)**
|
**[Is pivpn.io down?](https://status.pivpn.io)** |
|
||||||
|
**Test:** [![Build Status](https://travis-ci.com/pivpn/pivpn.svg?branch=test)](https://travis-ci.com/pivpn/pivpn) |
|
||||||
|
**Master:** [![Build Status](https://travis-ci.com/pivpn/pivpn.svg?branch=master)](https://travis-ci.com/pivpn/pivpn)
|
||||||
|
|
||||||
About
|
About
|
||||||
-----
|
-----
|
||||||
|
|
Loading…
Reference in a new issue