Skip to content

Commit

Permalink
fix rocks workflows (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucabello committed Mar 12, 2024
1 parent 55114fa commit 42b12b7
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 21 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/build-rock.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/workflows/push-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,3 @@ jobs:
custom_tag: "${{ needs.version-check.outputs.new_version }}"
tag_prefix: ""
default_bump: false
rock:
uses: canonical/observability/.github/workflows/build-rock.yaml@main
needs: python-package
secrets: inherit
with:
rock-name: cos-alerter
tag-minor: true
67 changes: 67 additions & 0 deletions .github/workflows/rock-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Build ROCK

on:
workflow_dispatch: {}
push:
branches:
- main
schedule:
- cron: "0 12 * * 0"

jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup LXD
uses: canonical/setup-lxd@v0.1.1
with:
channel: latest/stable

- name: Install dependencies
run: |
sudo snap install yq
sudo snap install --classic --channel edge rockcraft
- name: Build ROCK
id: build_rock
run: |
rockcraft pack --verbose
digest=$(skopeo inspect oci-archive:$(realpath ./cos-alerter_*.rock) --format '{{.Digest}}')
echo "digest=${digest#*:}" >> "$GITHUB_OUTPUT"
- name: Add git tag
uses: mathieudutour/github-tag-action@v6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: "${{ steps.build_rock.outputs.digest }}"
tag_prefix: ""

- name: Upload ROCK to ghcr.io
run: |
VERSION=$(yq -r '.version' rockcraft.yaml)
sudo skopeo --insecure-policy copy oci-archive:$(realpath ./cos-alerter_*.rock) docker://ghcr.io/canonical/cos-alerter:$VERSION --dest-creds "observability-noctua-bot:${{ secrets.OBSERVABILITY_NOCTUA_TOKEN }}"
sudo skopeo --insecure-policy copy oci-archive:$(realpath ./cos-alerter_*.rock) docker://ghcr.io/canonical/cos-alerter:latest --dest-creds "observability-noctua-bot:${{ secrets.OBSERVABILITY_NOCTUA_TOKEN }}"
MINOR_VERSION=${VERSION%.*}
sudo skopeo --insecure-policy copy oci-archive:$(realpath ./cos-alerter_*.rock) docker://ghcr.io/canonical/cos-alerter:$MINOR_VERSION --dest-creds "observability-noctua-bot:${{ secrets.OBSERVABILITY_NOCTUA_TOKEN }}"
fi
- name: Install Syft
run: |
curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin
- name: Create SBOM
run: syft $(realpath ./cos-alerter_*.rock) -o spdx-json=cos-alerter.sbom.json

- name: Upload SBOM
uses: actions/upload-artifact@v3
with:
name: cos-alerter-sbom
path: "cos-alerter.sbom.json"
- name: Upload locally built ROCK artifact
uses: actions/upload-artifact@v3
with:
name: cos-alerter-rock
path: "cos-alerter_*.rock"

0 comments on commit 42b12b7

Please sign in to comment.