Fix flaky networking for real #566
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: aws-nuke | |
on: | |
push: | |
paths: | |
- programs/aws-nuke/install.bash | |
- .github/workflows/aws-nuke.yml | |
schedule: | |
# Not at the start of an hour or a day to decreate the chance of delay. | |
# See schedule documentation. | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule | |
- cron: "17 5 * * *" | |
workflow_dispatch: | |
jobs: | |
test_idempotent_installation: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu:20.04" | |
- "ubuntu:22.04" | |
runs-on: ubuntu-latest | |
container: | |
image: "${{ matrix.os }}" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Prepare Docker | |
run: ./scripts/prepare_docker.bash | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Fix flaky networking in GitHub Actions | |
run: | | |
sudo apt install ethtool | |
sudo ethtool -K eth0 tx off rx off | |
- name: Install aws-nuke | |
shell: su norm --command "bash --login {0}" | |
run: programs/aws-nuke/install.bash | |
- name: Install aws-nuke again (test idempotency) | |
shell: su norm --command "bash --login {0}" | |
run: programs/aws-nuke/install.bash |