From: Soeren Apel Date: Sun, 11 May 2025 08:48:46 +0000 (+0200) Subject: Try to fix ubuntu repo key error X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=67edfbaf93d9f33ef84d9d7a2eb71768364a0e17;p=sigrok-build.git Try to fix ubuntu repo key error The github builders for the appimages currently produce errors like this: W: GPG error: https://apt.kitware.com/ubuntu focal InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 16FAAD7AF99A65E2 --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0a02097..db9469a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -302,6 +302,7 @@ jobs: - name: Update dependencies run: | + apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 16FAAD7AF99A65E2 sudo apt-get update sudo apt-get upgrade -y # Version must match the one in ci/appimage/sigrok-appimage-create-appimage.sh @@ -428,6 +429,7 @@ jobs: - name: Update dependencies run: | + apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 16FAAD7AF99A65E2 sudo apt-get update sudo apt-get upgrade -y # Temp! diff --git a/TODO b/TODO index 9774a63..46b9860 100644 --- a/TODO +++ b/TODO @@ -7,7 +7,8 @@ - Figure out how to trigger on a new tag creation while setting proper make flags and naming the release with the tag -- Figure out how to trigger on PR creation and upload artifacts to PRs +- Figure out how to trigger on PR creation + See https://github.com/flashrom/flashrom/blob/main/.github/workflows/lockdown.yml - Do the macOS builds need debug/release versions or is only one needed?