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

Setup GitHub Actions for building and publishing package #21

Merged
merged 5 commits into from
Jan 27, 2025
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
15 changes: 0 additions & 15 deletions .github/workflows/pkg-change-broadcast.yml

This file was deleted.

54 changes: 54 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Prepare a Release

on:
workflow_dispatch:
push:
branches:
- master
paths:
- debian/changelog

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
release:
runs-on: ubuntu-24.04
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Prepare Release
id: prepare
uses: regolith-linux/actions/prepare-release@main
env:
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN2 }}
with:
name: "${{ github.event.repository.name }}"
repo: "${{ github.server_url }}/${{ github.repository }}.git"
ref: "${{ github.ref_name }}"

- name: Push Changes to Voulage
uses: stefanzweifel/git-auto-commit-action@v5
if: ${{ steps.prepare.outputs.release-exists == 'false' }}
env:
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN2 }}
with:
repository: "${{ steps.prepare.outputs.voulage-path }}"
branch: "main"
file_pattern: "stage/testing/**"
commit_message: "chore: bump ${{ github.event.repository.name }} testing to ${{ steps.prepare.outputs.release-version }}"
commit_user_name: regolith-ci-bot
commit_user_email: [email protected]
commit_author: "regolith-ci-bot <[email protected]>"

- name: Release Package
uses: softprops/action-gh-release@v2
if: ${{ steps.prepare.outputs.release-exists == 'false' }}
with:
name: ${{ steps.prepare.outputs.release-version }}
tag_name: ${{ steps.prepare.outputs.release-version }}
token: ${{ secrets.ORG_BROADCAST_TOKEN2 }}
generate_release_notes: true
144 changes: 144 additions & 0 deletions .github/workflows/publish-testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
name: Publish to Testing

on:
push:
tags:
- 'v*'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
matrix-builder:
runs-on: ubuntu-24.04
outputs:
includes: ${{ steps.builder.outputs.includes }}
runners: ${{ steps.builder.outputs.runners }}
steps:
- name: Build Matrix
id: builder
uses: regolith-linux/actions/build-matrix@main
with:
name: "${{ github.event.repository.name }}"
ref: "${{ github.ref_name }}"
arch: "amd64 arm64"
stage: "testing"

build:
runs-on: ${{ fromJSON(needs.matrix-builder.outputs.runners)[matrix.arch] }}
needs: matrix-builder
container: "ghcr.io/regolith-linux/ci-${{ matrix.distro }}:${{ matrix.codename }}-${{ matrix.arch }}"
strategy:
fail-fast: false
matrix:
include: ${{ fromJSON(needs.matrix-builder.outputs.includes) }}
env:
server-address: "${{ secrets.KAMATERA_HOSTNAME2 }}"
server-username: "${{ secrets.KAMATERA_USERNAME }}"
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Import GPG Key
uses: regolith-linux/actions/import-gpg@main
with:
gpg-key: "${{ secrets.PACKAGE_PRIVATE_KEY2 }}"

- name: Build Package
id: build
uses: regolith-linux/actions/build-package@main
with:
name: "${{ github.event.repository.name }}"
distro: "${{ matrix.distro }}"
codename: "${{ matrix.codename }}"
stage: "testing"
suite: "testing"
component: "main"
arch: "${{ matrix.arch }}"

- name: Setup SSH
uses: regolith-linux/actions/setup-ssh@main
with:
ssh-host: "${{ env.server-address }}"
ssh-key: "${{ secrets.KAMATERA_SSH_KEY }}"

- name: Upload Package
uses: regolith-linux/actions/upload-files@main
with:
upload-to-folder: "${{ github.event.repository.name }}"

- name: Upload SourceLog
uses: regolith-linux/actions/upload-files@main
with:
upload-from: "${{ steps.build.outputs.buildlog-path }}"
upload-pattern: "SOURCELOG_*.txt"
upload-to-base: "/opt/archives/workspace/"
upload-to-folder: "${{ github.event.repository.name }}"

sources:
runs-on: ubuntu-24.04
needs: build
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
if: ${{ !failure() && !cancelled() }}
env:
server-address: "${{ secrets.KAMATERA_HOSTNAME2 }}"
server-username: "${{ secrets.KAMATERA_USERNAME }}"
steps:
- name: Import GPG Key
uses: regolith-linux/actions/import-gpg@main
with:
gpg-key: "${{ secrets.PACKAGE_PRIVATE_KEY2 }}"

- name: Setup SSH
uses: regolith-linux/actions/setup-ssh@main
with:
ssh-host: "${{ env.server-address }}"
ssh-key: "${{ secrets.KAMATERA_SSH_KEY }}"

- name: Rebuild Sources
uses: regolith-linux/actions/rebuild-sources@main
with:
workspace-subfolder: "${{ github.event.repository.name }}"
only-component: "testing"
only-package: "${{ github.event.repository.name }}"

publish:
runs-on: ubuntu-24.04
needs: sources
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
if: ${{ !failure() && !cancelled() }}
env:
server-address: "${{ secrets.KAMATERA_HOSTNAME2 }}"
server-username: "${{ secrets.KAMATERA_USERNAME }}"
steps:
- name: Setup SSH
uses: regolith-linux/actions/setup-ssh@main
with:
ssh-host: "${{ env.server-address }}"
ssh-key: "${{ secrets.KAMATERA_SSH_KEY }}"

- name: Publish Repo
uses: regolith-linux/actions/publish-repo@main
with:
packages-path-subfolder: "${{ github.event.repository.name }}"
only-component: "testing"

manifests:
runs-on: ubuntu-24.04
needs: [matrix-builder, publish]
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
if: ${{ !failure() && !cancelled() }}
steps:
- name: Update Manifests
uses: regolith-linux/actions/update-manifest@main
env:
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN2 }}
with:
name: "${{ github.event.repository.name }}"
repo: "${{ github.server_url }}/${{ github.repository }}.git"
ref: "${{ github.ref_name }}"
sha: "${{ github.sha }}"
matrix: "${{ needs.matrix-builder.outputs.includes }}"
suite: "testing"
component: "main"
145 changes: 145 additions & 0 deletions .github/workflows/publish-unstable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
name: Publish to Unstable

on:
workflow_dispatch:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
matrix-builder:
runs-on: ubuntu-24.04
outputs:
includes: ${{ steps.builder.outputs.includes }}
runners: ${{ steps.builder.outputs.runners }}
steps:
- name: Build Matrix
id: builder
uses: regolith-linux/actions/build-matrix@main
with:
name: "${{ github.event.repository.name }}"
ref: "${{ github.ref_name }}"
arch: "amd64 arm64"
stage: "unstable"

build:
runs-on: ${{ fromJSON(needs.matrix-builder.outputs.runners)[matrix.arch] }}
needs: matrix-builder
container: "ghcr.io/regolith-linux/ci-${{ matrix.distro }}:${{ matrix.codename }}-${{ matrix.arch }}"
strategy:
fail-fast: false
matrix:
include: ${{ fromJSON(needs.matrix-builder.outputs.includes) }}
env:
server-address: "${{ secrets.KAMATERA_HOSTNAME2 }}"
server-username: "${{ secrets.KAMATERA_USERNAME }}"
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Import GPG Key
uses: regolith-linux/actions/import-gpg@main
with:
gpg-key: "${{ secrets.PACKAGE_PRIVATE_KEY2 }}"

- name: Build Package
id: build
uses: regolith-linux/actions/build-package@main
with:
name: "${{ github.event.repository.name }}"
distro: "${{ matrix.distro }}"
codename: "${{ matrix.codename }}"
stage: "unstable"
suite: "unstable"
component: "main"
arch: "${{ matrix.arch }}"

- name: Setup SSH
uses: regolith-linux/actions/setup-ssh@main
with:
ssh-host: "${{ env.server-address }}"
ssh-key: "${{ secrets.KAMATERA_SSH_KEY }}"

- name: Upload Package
uses: regolith-linux/actions/upload-files@main
with:
upload-to-folder: "${{ github.event.repository.name }}"

- name: Upload SourceLog
uses: regolith-linux/actions/upload-files@main
with:
upload-from: "${{ steps.build.outputs.buildlog-path }}"
upload-pattern: "SOURCELOG_*.txt"
upload-to-base: "/opt/archives/workspace/"
upload-to-folder: "${{ github.event.repository.name }}"

sources:
runs-on: ubuntu-24.04
needs: build
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
if: ${{ !failure() && !cancelled() }}
env:
server-address: "${{ secrets.KAMATERA_HOSTNAME2 }}"
server-username: "${{ secrets.KAMATERA_USERNAME }}"
steps:
- name: Import GPG Key
uses: regolith-linux/actions/import-gpg@main
with:
gpg-key: "${{ secrets.PACKAGE_PRIVATE_KEY2 }}"

- name: Setup SSH
uses: regolith-linux/actions/setup-ssh@main
with:
ssh-host: "${{ env.server-address }}"
ssh-key: "${{ secrets.KAMATERA_SSH_KEY }}"

- name: Rebuild Sources
uses: regolith-linux/actions/rebuild-sources@main
with:
workspace-subfolder: "${{ github.event.repository.name }}"
only-component: "unstable"
only-package: "${{ github.event.repository.name }}"

publish:
runs-on: ubuntu-24.04
needs: sources
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
if: ${{ !failure() && !cancelled() }}
env:
server-address: "${{ secrets.KAMATERA_HOSTNAME2 }}"
server-username: "${{ secrets.KAMATERA_USERNAME }}"
steps:
- name: Setup SSH
uses: regolith-linux/actions/setup-ssh@main
with:
ssh-host: "${{ env.server-address }}"
ssh-key: "${{ secrets.KAMATERA_SSH_KEY }}"

- name: Publish Repo
uses: regolith-linux/actions/publish-repo@main
with:
packages-path-subfolder: "${{ github.event.repository.name }}"
only-component: "unstable"

manifests:
runs-on: ubuntu-24.04
needs: [matrix-builder, publish]
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64"
if: ${{ !failure() && !cancelled() }}
steps:
- name: Update Manifests
uses: regolith-linux/actions/update-manifest@main
env:
GITHUB_TOKEN: ${{ secrets.ORG_BROADCAST_TOKEN2 }}
with:
name: "${{ github.event.repository.name }}"
repo: "${{ github.server_url }}/${{ github.repository }}.git"
ref: "${{ github.ref_name }}"
sha: "${{ github.sha }}"
matrix: "${{ needs.matrix-builder.outputs.includes }}"
suite: "unstable"
component: "main"
Loading