ci: switch over to using forgejo actions
This commit is contained in:
parent
b3d2b83fed
commit
2088c74d22
6 changed files with 50 additions and 47 deletions
34
.forgejo/workflows/push.yaml
Normal file
34
.forgejo/workflows/push.yaml
Normal file
|
@ -0,0 +1,34 @@
|
|||
name: On_Push
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
# paths:
|
||||
# - .forgejo/**/*
|
||||
# - Committee/**/Handovers/*
|
||||
# - Minutes/**/*
|
||||
# - Committee/**/Budget/*
|
||||
# - Events/**/*
|
||||
|
||||
|
||||
jobs:
|
||||
# rust code must be formatted for standardisation
|
||||
pdfs:
|
||||
# build it using teh base nixos system, helps with caching
|
||||
runs-on: nix
|
||||
strategy:
|
||||
matrix:
|
||||
script: [ handovers, minutes, budget, events ]
|
||||
steps:
|
||||
# get the repo first
|
||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||
# actual script to run the build process
|
||||
- run: nix run .#${{ matrix.script }}
|
||||
- run: ls -lah
|
||||
- run: ls -lah pdf_${{ matrix.script }}/
|
||||
# upload the files
|
||||
- uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
||||
with:
|
||||
name: PDFs-${{ matrix.script }}
|
||||
path: pdf_${{ matrix.script }}/
|
|
@ -1,37 +0,0 @@
|
|||
stages:
|
||||
- build
|
||||
|
||||
pdf:
|
||||
tags:
|
||||
- nix
|
||||
before_script:
|
||||
# basic stuff
|
||||
- nix --extra-experimental-features 'nix-command flakes' profile install nixpkgs#bash
|
||||
|
||||
# setup the cache stuff
|
||||
- nix --extra-experimental-features 'nix-command flakes' profile install nixpkgs#attic-client
|
||||
- attic login skynet https://nix-cache.skynet.ie/ $CACHE_KEY
|
||||
- attic use skynet-cache
|
||||
stage: build
|
||||
# what it runs
|
||||
script:
|
||||
- attic watch-store skynet-cache &
|
||||
- nix --extra-experimental-features 'nix-command flakes' run .#handovers
|
||||
- nix --extra-experimental-features 'nix-command flakes' run .#minutes
|
||||
- nix --extra-experimental-features 'nix-command flakes' run .#budget
|
||||
- nix --extra-experimental-features 'nix-command flakes' run .#events
|
||||
artifacts:
|
||||
name: "PDFs"
|
||||
paths:
|
||||
- pdf_Handovers/
|
||||
- pdf_Minutes/
|
||||
- pdf_Budget/
|
||||
- pdf_Events/
|
||||
- errors.log
|
||||
rules:
|
||||
- if: '$CI_PROJECT_NAMESPACE == "compsoc1/compsoc" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||
changes:
|
||||
- Committee/**/Handovers/*
|
||||
- Minutes/**/*
|
||||
- Committee/**/Budget/*
|
||||
- Events/**/*
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
root="$PWD"
|
||||
|
||||
folder="budget"
|
||||
folder_html="html_${folder}"
|
||||
folder_pdf="pdf_${folder}"
|
||||
folder="Budget"
|
||||
folder_lower="budget"
|
||||
folder_html="html_${folder_lower}"
|
||||
folder_pdf="pdf_${folder_lower}"
|
||||
|
||||
function build_html() {
|
||||
# used to match **
|
||||
|
@ -48,6 +49,9 @@ function build_html() {
|
|||
# make the final folder
|
||||
mkdir -p "$root/$folder_html/$year_string"
|
||||
|
||||
echo "AAAAAAAAA"
|
||||
ls -lah
|
||||
echo "BBBBBBBBB"
|
||||
# copy everything to teh final folder
|
||||
cp -R ./$folder_html/* "$root/$folder_html/$year_string"
|
||||
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
root="$PWD"
|
||||
|
||||
folder="events"
|
||||
folder_html="html_${folder}"
|
||||
folder_pdf="pdf_${folder}"
|
||||
folder="Events"
|
||||
folder_lower="events"
|
||||
folder_html="html_${folder_lower}"
|
||||
folder_pdf="pdf_${folder_lower}"
|
||||
|
||||
function build_html() {
|
||||
# used to match **
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
root="$PWD"
|
||||
|
||||
folder="handovers"
|
||||
folder_html="html_${folder}"
|
||||
folder_pdf="pdf_${folder}"
|
||||
folder="Handovers"
|
||||
folder_lower="handovers"
|
||||
folder_html="html_${folder_lower}"
|
||||
folder_pdf="pdf_${folder_lower}"
|
||||
|
||||
function build_html() {
|
||||
# used to match **
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
root="$PWD"
|
||||
|
||||
folder_html="html_minutes"
|
||||
folder_pdf="pdf_Minutes"
|
||||
folder_pdf="pdf_minutes"
|
||||
|
||||
# make teh html files first
|
||||
function build_html() {
|
||||
|
|
Loading…
Reference in a new issue