Skip to content

test: network diagnostic tests #1090

test: network diagnostic tests

test: network diagnostic tests #1090

---
name: Task Acceptance Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
task_acceptance_tests:
name: On ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-20.04', 'rocky-8' ]
env:
ruby_version: '3.1'
GEM_BOLT: true
BEAKER_debug: true
BEAKER_set: docker/${{ matrix.os }}
runs-on: 'ubuntu-latest'
steps:
- name: Connect to Twingate
uses: twingate/github-action@v1
with:
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
env:
TWINGATE_LOG_LEVEL: debug
- name: Fix DNS
run: |
echo "=== Current DNS config ==="
cat /etc/resolv.conf
echo "=== Remove Azure DNS interference (as documented) ==="
sudo sed '/^nameserver 168.63.129.16$/d; /^search/d' /etc/resolv.conf > /tmp/resolv.conf && sudo cp /tmp/resolv.conf /etc/resolv.conf
echo "=== Updated DNS config ==="
cat /etc/resolv.conf
echo "=== Check what Twingate created ==="
resolvectl status || systemd-resolve --status
echo "=== Test internal domain resolution ==="
nslookup artifactory.delivery.puppetlabs.net
- name: Checkout current PR code
uses: actions/checkout@v4
- name: Install docker
uses: docker/setup-buildx-action@v1
id: buildx
with:
install: true
- name: Install ruby version ${{ env.ruby_version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.ruby_version }}
bundler-cache: true
- name: Run task acceptance tests
run: |
cd task_spec
bundle exec rake task_acceptance