Revert to flaky networking #617
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: tgenv | |
on: | |
push: | |
paths: | |
- programs/tgenv/install.bash | |
- .github/workflows/tgenv.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: Install tgenv | |
shell: su norm --command "bash --login {0}" | |
run: programs/tgenv/install.bash | |
- name: Install tgenv again (test idempotency) | |
shell: su norm --command "bash --login {0}" | |
run: programs/tgenv/install.bash |