Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: "Check out"
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build unit test image"
run: DOCKER_BUILDKIT=1 docker build -t rootlesskit:test-unit --target test-unit .
- name: "Unit test"
Expand All @@ -15,7 +15,7 @@ jobs:
name: "Cross compilation test"
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: "Build binaries"
run: DOCKER_BUILDKIT=1 docker build -o /tmp/artifact --target cross-artifact .
test-integration:
Expand All @@ -34,7 +34,7 @@ jobs:
EOT
sudo systemctl restart apparmor.service
- name: "Check out"
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build integration test image"
run: DOCKER_BUILDKIT=1 docker build -t rootlesskit:test-integration --target test-integration .
- name: "Integration test: exit-code"
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
EOT
sudo systemctl restart apparmor.service
- name: "Check out"
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: "Build integration test image"
run: DOCKER_BUILDKIT=1 docker build -t rootlesskit:test-integration-docker --target test-integration-docker --build-arg DOCKER_VERSION .
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id-token: write # for provenances
attestations: write # for provenances
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: "Build binaries"
run: DOCKER_BUILDKIT=1 docker build -o /tmp/artifact --target cross-artifact .
- name: "SHA256SUMS"
Expand Down