Update config #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: build | |
on: push | |
jobs: | |
build: | |
# https://github.com/OpenVPN/openvpn/blob/master/.github/workflows/build.yaml#L132 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install build dependencies | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
run: > | |
sudo apt-get update && sudo apt-get install -y | |
liblzo2-dev libpam0g-dev liblz4-dev libnl-genl-3-dev linux-libc-dev man2html | |
libcmocka-dev libcap-ng-dev python3-docutils libtool automake autoconf golang | |
- name: Checkout OpenVPN | |
uses: actions/checkout@v2 | |
with: | |
repository: OpenVPN/openvpn | |
ref: v2.6.12 | |
path: openvpn | |
- name: Checkout aws-vpn-client | |
uses: actions/checkout@v2 | |
with: | |
path: aws-vpn-client | |
- name: Patch OpenVPN | |
run: git -C openvpn apply ../aws-vpn-client/openvpn-v2.6.12-aws.patch | |
- name: autoconf | |
run: autoreconf -fvi | |
working-directory: openvpn | |
- name: configure build | |
run: ./configure | |
working-directory: openvpn | |
- name: build OpenVPN | |
run: make -j 2 | |
working-directory: openvpn | |
- name: build SAMLserver | |
run: go build -o SAMLserver server.go | |
working-directory: aws-vpn-client | |
- name: release | |
run: > | |
mkdir release && | |
cp | |
aws-vpn-client/SAMLserver | |
aws-vpn-client/vpn.conf | |
aws-vpn-client/domains.txt | |
aws-vpn-client/aws-connect.sh | |
aws-vpn-client/resolvconf.sh | |
openvpn/src/openvpn/openvpn | |
release && | |
chmod +x | |
release/SAMLserver | |
release/aws-connect.sh | |
release/openvpn | |
release/resolvconf.sh | |
- name: upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: aws-vpn-client | |
path: release |