Skip to content

Commit

Permalink
podvm: Pin attestation-agent
Browse files Browse the repository at this point in the history
- Pin attestaton-agent to v0.4.0 to avoid instability

Fixes: confidential-containers#697
Signed-off-by: stevenhorsman <[email protected]>
  • Loading branch information
stevenhorsman committed Mar 10, 2023
1 parent 95f2772 commit eff98cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion podvm/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
UBUNTU_RELEASE = focal
SKOPEO_VERSION = 1.5.0
UMOCI_VERSION = 0.4.7
AA_VERSION = v0.4.0

IMAGE_PREFIX := podvm

Expand Down Expand Up @@ -120,7 +121,7 @@ $(PAUSE): | $(PAUSE_SRC) $(UMOCI_SRC)/umoci
$(UMOCI_SRC)/umoci unpack --rootless --image "$(PAUSE_SRC):$(PAUSE_VERSION)" "${FILES_DIR}/$(PAUSE_BUNDLE)"

$(ATTESTATION_AGENT_SRC):
git clone "$(ATTESTATION_AGENT_REPO)" "$(ATTESTATION_AGENT_SRC)"
git clone -b "$(AA_VERSION)" "$(ATTESTATION_AGENT_REPO)" "$(ATTESTATION_AGENT_SRC)"

$(ATTESTATION_AGENT): $(ATTESTATION_AGENT_SRC)
cd "$(ATTESTATION_AGENT_SRC)" && CC= ARCH=$(ARCH) $(MAKE) KBC="$(AA_KBC)" LIBC="$(LIBC)"
Expand Down

0 comments on commit eff98cb

Please sign in to comment.