mirror of
https://github.com/hwdsl2/openvpn-install.git
synced 2026-01-27 18:31:04 +00:00
Add tests
This commit is contained in:
40
.github/workflows/test_set_3.yml
vendored
Normal file
40
.github/workflows/test_set_3.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
#
|
||||
# Copyright (C) 2022 Lin Song <linsongui@gmail.com>
|
||||
|
||||
name: test_set_3
|
||||
|
||||
on: workflow_call
|
||||
|
||||
jobs:
|
||||
test_set_3:
|
||||
if: github.repository_owner == 'hwdsl2'
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-22.04, ubuntu-20.04]
|
||||
fail-fast: false
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # 2.4.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Test
|
||||
run: |
|
||||
set -ex
|
||||
|
||||
mkdir -p /opt/src
|
||||
cd /opt/src
|
||||
ls -ld "$GITHUB_WORKSPACE/openvpn-install.sh"
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
sudo apt-get -yqq update
|
||||
sudo apt-get -yqq dist-upgrade
|
||||
sudo apt-get -yqq install wget rsyslog
|
||||
sudo service rsyslog start
|
||||
|
||||
cp -f "$GITHUB_WORKSPACE"/openvpn-install.sh ./openvpn.sh
|
||||
|
||||
sudo bash openvpn.sh --auto
|
||||
|
||||
sudo netstat -anpu | grep openvpn
|
||||
sudo systemctl status openvpn-server@server
|
||||
ls -ld ~/client.ovpn
|
||||
Reference in New Issue
Block a user