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:
45
.github/workflows/test_set_2.yml
vendored
Normal file
45
.github/workflows/test_set_2.yml
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
#
|
||||
# Copyright (C) 2022 Lin Song <linsongui@gmail.com>
|
||||
|
||||
name: test_set_2
|
||||
|
||||
on: workflow_call
|
||||
|
||||
jobs:
|
||||
test_set_2:
|
||||
runs-on: ubuntu-20.04
|
||||
if: github.repository_owner == 'hwdsl2'
|
||||
strategy:
|
||||
matrix:
|
||||
os_version: ["debian:11", "debian:10"]
|
||||
fail-fast: false
|
||||
container:
|
||||
image: ${{ matrix.os_version }}
|
||||
options: --cap-add=NET_ADMIN --device=/dev/net/tun
|
||||
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
|
||||
apt-get -yqq update
|
||||
apt-get -yqq dist-upgrade
|
||||
apt-get -yqq install wget rsyslog kmod procps iproute2 net-tools
|
||||
if grep -qs bookworm /etc/debian_version; then
|
||||
rsyslogd
|
||||
else
|
||||
service rsyslog start
|
||||
fi
|
||||
|
||||
cp -f "$GITHUB_WORKSPACE"/openvpn-install.sh ./openvpn.sh
|
||||
|
||||
bash openvpn.sh --auto
|
||||
|
||||
ls -ld ~/client.ovpn
|
||||
Reference in New Issue
Block a user