Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

podvm_mkosi: Remove remaining references to builder #2215

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
1 change: 0 additions & 1 deletion .github/workflows/azure-podvm-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ jobs:
TEE_PLATFORM: az-cvm-vtpm
VERIFY_PROVENANCE: yes
run: |
make fedora-binaries-builder
make binaries

- name: Install build dependencies
Expand Down
6 changes: 3 additions & 3 deletions src/cloud-api-adaptor/podvm-mkosi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ VERIFY_PROVENANCE ?= no

.DEFAULT_GOAL := all
.PHONY: all
all: fedora-binaries-builder binaries image
all: binaries image

.PHONY: debug
debug: fedora-binaries-builder binaries image-debug
debug:binaries image-debug

.PHONY: container
container: fedora-binaries-builder binaries image-container
container: binaries image-container

ifeq ($(ARCH),s390x)
YQ_CHECKSUM = $(YQ_CHECKSUM_s390x)
Expand Down
1 change: 0 additions & 1 deletion src/cloud-api-adaptor/podvm-mkosi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ Another issue is s390x does not support UEFI. Instead, we can first use **mkosi*

It requires a **s390x host** to build s390x image with make commands:
```
make fedora-binaries-builder
TEE_PLATFORM=se-attester make binaries
make image
# SE_BOOT=true make image
Expand Down
Loading