Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix rocks workflows #72

Merged
merged 1 commit into from
Mar 12, 2024
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
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"
Loading