Skip to content
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
12 changes: 10 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,12 @@ jobs:
include:
- runner: ubuntu-24.04
os: ubuntu-24.04
- runner: self-macos-latest
os: self-macos-latest
# Using macos-latest (public runner) instead of self-macos-latest (self-hosted)
# because the public runner has proven more reliable for large file uploads.
# The condition !startsWith(matrix.os, 'self') ensures Nix/Cachix are installed
# on public runners (they're pre-installed on self-hosted runners).
- runner: macos-latest
os: macos-15
runs-on: ${{ matrix.runner }}
timeout-minutes: 120
steps:
Expand Down Expand Up @@ -83,7 +87,11 @@ jobs:
with:
packages: jq
script: |
# Install kup
export PATH="$(nix build github:runtimeverification/kup --no-link --json | jq -r '.[].outputs | to_entries[].value')/bin:$PATH"

# Publish all three package variants using kup publish
# Using public macOS runner has proven reliable for large file uploads
kup publish --verbose k-framework-binary .#k --keep-days 180
kup publish --verbose k-framework-binary .#k.openssl.secp256k1 --keep-days 180
kup publish --verbose k-framework-binary .#k.openssl.procps.secp256k1 --keep-days 180
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -462,4 +462,3 @@ jobs:
path: homebrew-k/Formula/kframework.rb
retention-days: 1


Loading