Skip to content

Commit

Permalink
Run real installer test
Browse files Browse the repository at this point in the history
  • Loading branch information
iainelder committed Jun 30, 2024
1 parent f1bf21c commit 8f93ce7
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/test_installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@ jobs:
installer: ${{ fromJson(needs.list_installers.outputs.installers) }}
os: ["ubuntu:20.04", "ubuntu:22.04"]
steps:
- name: Debug installer
run: |
echo ${{matrix.installer}}
- name: Check out code
uses: actions/checkout@v4

- name: Prepare Docker
run: ./scripts/prepare_docker.bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install ${{matrix.installer}}
shell: su norm --command "bash --login {0}"
run: programs/${{matrix.installer}}/install.bash

- name: Install ${{matrix.installer}} again (test idempotency)
shell: su norm --command "bash --login {0}"
run: programs/${{matrix.installer}}/install.bash

0 comments on commit 8f93ce7

Please sign in to comment.