Browse Source

Merge pull request #35 from jordanpotter/ci-ip-check

Verify WireGuard IP address is different in CI
pull/37/head
Jordan Potter 2 years ago
committed by GitHub
parent
commit
151215a763
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .github/workflows/ci.yml

8
.github/workflows/ci.yml

@ -10,7 +10,7 @@ on:
concurrency: ${{ github.workflow }}
jobs:
build:
publish:
name: Publish
runs-on: ubuntu-latest
permissions:
@ -46,10 +46,12 @@ jobs:
load: true
tags: wireguard
- name: Test curl
- name: Test tunnel
run: |
docker run --rm -d --name wireguard --cap-add NET_ADMIN --cap-add SYS_MODULE --sysctl net.ipv4.conf.all.src_valid_mark=1 -v ${{ github.workspace }}/wireguard.conf:/etc/wireguard/wg0.conf wireguard
docker run --rm --net=container:wireguard curlimages/curl --retry 3 --retry-delay 5 ifconfig.io
normal_ip=$(docker run --rm curlimages/curl --retry 3 --retry-delay 5 ifconfig.io)
wireguard_ip=$(docker run --rm --net=container:wireguard curlimages/curl --retry 3 --retry-delay 5 ifconfig.io)
if [ "$normal_ip" = "$wireguard_ip" ]; then echo "normal ip and wireguard ip are the same" && exit 1; fi
docker stop wireguard
- name: Test kill switch

Loading…
Cancel
Save