Skip to content
Merged
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
32 changes: 20 additions & 12 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,6 @@ jobs:
- name: build
run: make build

- name: setup docker buildx
run: docker buildx create --name conftestbuild --use

- name: Build Docker image
uses: docker/build-push-action@v6
with:
context: .
push: false
tags: |
${{ env.IMAGE }}:latest
platforms: ${{ env.PLATFORMS }}

- name: unit test
run: make test

Expand Down Expand Up @@ -106,3 +94,23 @@ jobs:

- name: test oci push/pull
run: ./scripts/push-pull-e2e.sh

docker:
runs-on: ubuntu-latest
needs:
- validate
steps:
- name: checkout source
uses: actions/checkout@v4

- name: setup docker buildx
run: docker buildx create --name conftestbuild --use

- name: Build Docker image
uses: docker/build-push-action@v6
with:
context: .
push: false
tags: |
${{ env.IMAGE }}:latest
platforms: ${{ env.PLATFORMS }}
Loading