]> sigrok.org Git - sigrok-build.git/commitdiff
Try to fix ubuntu repo key error
authorSoeren Apel <redacted>
Sun, 11 May 2025 08:48:46 +0000 (10:48 +0200)
committerSoeren Apel <redacted>
Sun, 11 May 2025 08:48:46 +0000 (10:48 +0200)
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

.github/workflows/build.yml
TODO

index 0a0209728c9e13189cf94a16a7630194754c0e92..db9469a1eb2f4559ce6b8a3f5fe4e7bdace070fe 100644 (file)
@@ -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 9774a63874c162c6d43caa16d5eab6cd1a3ebe28..46b9860a267d86d7c78127fc5c9f8f8d8de60848 100644 (file)
--- 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?