Skip to content

Commit 5f7c0bd

Browse files
authored
Fix/cachix pin no response - follow up (#4910)
#4906 introduced a fix for the cachix flakiness we observe in CI. However, that PR missed a crucial `|| true` at the end of `kup publish` that can be found, e.g., in the respective fix added to mir-semantics: https://github.com/runtimeverification/mir-semantics/pull/950/changes#diff-87db21a973eed4fef5f32b267aa60fcee5cbdf03c67fafdc2a9b553bb0b15f34R174 . Without that fix, CI is still failing during release, see https://github.com/runtimeverification/k/actions/runs/24207323412/job/70666525084 .
1 parent 874a384 commit 5f7c0bd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ jobs:
9494
9595
# Publish all three package variants using kup publish
9696
# Using public macOS runner has proven reliable for large file uploads
97-
kup publish --verbose k-framework-binary .#k --keep-days 180
98-
kup publish --verbose k-framework-binary .#k.openssl.secp256k1 --keep-days 180
99-
kup publish --verbose k-framework-binary .#k.openssl.procps.secp256k1 --keep-days 180
97+
kup publish --verbose k-framework-binary .#k --keep-days 180 || true
98+
kup publish --verbose k-framework-binary .#k.openssl.secp256k1 --keep-days 180 || true
99+
kup publish --verbose k-framework-binary .#k.openssl.procps.secp256k1 --keep-days 180 || true
100100
101101
# kup/cachix pin visibility can be flaky; verify pins and narinfo via public API
102102
bash .github/scripts/check-cachix-pin.sh

0 commit comments

Comments
 (0)