Skip to content

Commit

Permalink
workflows: Adjust unit-tests-refresh to recent container changes
Browse files Browse the repository at this point in the history
Commit b746f5a changed the unit-tests workflow, but not the
-refresh one.
  • Loading branch information
martinpitt authored and allisonkarlitskaya committed Jun 20, 2022
1 parent fef1409 commit 5aa80a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/unit-tests-refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ jobs:
run: containers/unit-tests/build

- name: Run amd64 gcc check-memory test
run: containers/unit-tests/start check-memory
run: containers/unit-tests/start --verbose --env=CC=gcc --image-tag=latest --make check-memory

- name: Run i386 clang check-memory test
run: containers/unit-tests/start :i386 CC=clang check-memory
run: containers/unit-tests/start --verbose --env=CC=clang --image-tag=i386 --make check-memory

- name: Run amd64 clang distcheck test
run: containers/unit-tests/start CC=clang distcheck
run: containers/unit-tests/start --verbose --env=CC=clang --image-tag=latest --make distcheck

- name: Run i386 gcc distcheck test
run: containers/unit-tests/start :i386 distcheck
run: containers/unit-tests/start --verbose --env=CC=clang --image-tag=i386 --make distcheck

- name: Log into container registry
run: podman login -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} ghcr.io
Expand Down

0 comments on commit 5aa80a4

Please sign in to comment.