Skip to content

Commit

Permalink
try docker pruning after builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpect committed Oct 11, 2024
1 parent 6adc5b7 commit 3f5293d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/startuptest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,22 @@ jobs:
- name: Build
run: docker compose build

- name: Docker system prune after build
run: docker system prune -af

- name: Test Binary
env:
BUILDER_ARGS: "runtime rb"
run: docker compose up --exit-code-from binary binary

- name: Docker system prune after test
run: docker system prune -af

- name: Test Startup-Rootless
run: ./test/test.sh rootless startup


- name: Docker system prune after test
run: docker system prune -af

- name: Test Startup-Daemon
run: ./test/test.sh client startup

0 comments on commit 3f5293d

Please sign in to comment.