PR --> Build --> Merge --> Deploy
All checks were successful
Build on PR / nix-build (fj-shadowfax-01, native-x86_64, x86_64-linux) (pull_request) Successful in 43s
Build on PR / nix-build (fj-hetzner-aarch64-01, native-aarch64, aarch64-linux) (pull_request) Successful in 45s
Deploy on PR Merge / if_merged (fj-shadowfax-01, native-x86_64, x86_64-linux) (pull_request) Successful in 42s
Deploy on PR Merge / if_merged (fj-hetzner-aarch64-01, native-aarch64, aarch64-linux) (pull_request) Successful in 45s
All checks were successful
Build on PR / nix-build (fj-shadowfax-01, native-x86_64, x86_64-linux) (pull_request) Successful in 43s
Build on PR / nix-build (fj-hetzner-aarch64-01, native-aarch64, aarch64-linux) (pull_request) Successful in 45s
Deploy on PR Merge / if_merged (fj-shadowfax-01, native-x86_64, x86_64-linux) (pull_request) Successful in 42s
Deploy on PR Merge / if_merged (fj-hetzner-aarch64-01, native-aarch64, aarch64-linux) (pull_request) Successful in 45s
This commit is contained in:
parent
f3ea81472a
commit
8fbab9d869
2 changed files with 50 additions and 10 deletions
|
@ -1,6 +1,8 @@
|
||||||
name: "Build"
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
||||||
|
name: "Build on PR"
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
types: [opened, synchronize]
|
||||||
push:
|
push:
|
||||||
branches: ["main"]
|
branches: ["main"]
|
||||||
paths:
|
paths:
|
||||||
|
@ -30,11 +32,9 @@ jobs:
|
||||||
if: ${{ !github.event.pull_request.head.repo.fork }}
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
||||||
with:
|
with:
|
||||||
name: hsndev
|
name: hsndev
|
||||||
# If you chose API tokens for write access OR if you have a private cache
|
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
- name: Garbage collect build dependencies
|
- name: Garbage collect build dependencies
|
||||||
run: nix-collect-garbage
|
run: nix-collect-garbage
|
||||||
|
|
||||||
- name: Build new ${{ matrix.system }} system and push to cachix
|
- name: Build new ${{ matrix.system }} system and push to cachix
|
||||||
id: "build"
|
id: "build"
|
||||||
shell: bash
|
shell: bash
|
||||||
|
@ -49,10 +49,3 @@ jobs:
|
||||||
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
|
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
echo $DRVOUT | cachix push hsndev
|
echo $DRVOUT | cachix push hsndev
|
||||||
- name: Deploy ${{ matrix.system }} runners
|
|
||||||
id: "deploy"
|
|
||||||
if: success()
|
|
||||||
env:
|
|
||||||
CACHIX_ACTIVATE_TOKEN: ${{ secrets.CACHIX_ACTIVATE_TOKEN }}
|
|
||||||
run: |
|
|
||||||
cachix deploy activate $DRVOUT
|
|
47
.forgejo/workflows/deploy.yaml
Normal file
47
.forgejo/workflows/deploy.yaml
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
||||||
|
name: "Deploy on PR Merge"
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [closed]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
if_merged:
|
||||||
|
if: github.event.pull_request.merged == true
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- name: fj-hetzner-aarch64-01
|
||||||
|
system: aarch64-linux
|
||||||
|
os: native-aarch64
|
||||||
|
- name: fj-shadowfax-01
|
||||||
|
system: x86_64-linux
|
||||||
|
os: native-x86_64
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
env:
|
||||||
|
PATH: ${{ format('{0}:{1}', '/run/current-system/sw/bin', env.PATH) }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: https://github.com/actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: https://github.com/cachix/cachix-action@v15
|
||||||
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
||||||
|
with:
|
||||||
|
name: hsndev
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
- name: Garbage collect build dependencies
|
||||||
|
run: nix-collect-garbage
|
||||||
|
- name: Build new ${{ matrix.system }} system and push to cachix
|
||||||
|
id: "build"
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -o pipefail
|
||||||
|
DRVOUT=$(nix build .#deploy-json.${{ matrix.system }} --print-out-paths)
|
||||||
|
echo "DRVOUT=$DRVOUT" >> $GITHUB_ENV
|
||||||
|
- name: Deploy ${{ matrix.system }} runners
|
||||||
|
id: "deploy"
|
||||||
|
if: success()
|
||||||
|
env:
|
||||||
|
CACHIX_ACTIVATE_TOKEN: ${{ secrets.CACHIX_ACTIVATE_TOKEN }}
|
||||||
|
run: |
|
||||||
|
cachix deploy activate $DRVOUT
|
Loading…
Reference in a new issue