Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
owner: ${{ github.repository_owner }}
trivy-image-config: "trivy.yaml"
multiarch-awareness: true
cache-action: ${{ (github.event_name == 'push') && 'save' || 'restore' }}
cache-action: 'skip' # ${{ (github.event_name == 'push') && 'save' || 'restore' }}
arch-skipping-maximize-build-space: '["arm64"]'
platform-labels: '{"arm64": ["self-hosted", "Linux", "ARM64", "jammy"]}'
enabled-ubuntu-pro-features: "fips-updates"
Expand Down
8 changes: 5 additions & 3 deletions metallb/v0.15.3/speaker/rockcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ base: bare
build-base: ubuntu@22.04
platforms:
amd64:
arm64:

entrypoint-service: speaker
services:
Expand All @@ -27,13 +26,16 @@ parts:
- openssl # now automatically selected from fips-preview

speaker:
plugin: go
plugin: nil
source-type: git
source: https://github.com/metallb/metallb
source-tag: v0.15.3
source-depth: 1
disable-parallel: true
build-snaps:
- go/1.25-fips/stable
override-build: |
snap refresh go --channel 1.25-fips/stable
go version

GIT_COMMIT=`git rev-parse HEAD`
# We'll use the tag name.
Expand Down
Loading