ci: add forgejo ci/cd and remove gitlab
This commit is contained in:
parent
5b94811276
commit
5f6a086e80
2 changed files with 33 additions and 87 deletions
33
.forgejo/workflows/build.yaml
Normal file
33
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
paths:
|
||||||
|
- flake.*
|
||||||
|
- src/**/*
|
||||||
|
- Cargo.*
|
||||||
|
- .forgejo/**/*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
# build it using teh base nixos system, helps with caching
|
||||||
|
runs-on: nix
|
||||||
|
steps:
|
||||||
|
# get the repo first
|
||||||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
- name: "Build it locally"
|
||||||
|
run: nix build --verbose
|
||||||
|
|
||||||
|
# deploy it upstream
|
||||||
|
deploy:
|
||||||
|
# runs on teh default docker dontainer
|
||||||
|
runs-on: docker
|
||||||
|
needs: [ build ]
|
||||||
|
steps:
|
||||||
|
- name: "Deploy to Skynet"
|
||||||
|
uses: https://forgejo.skynet.ie/Skynet/actions-deploy-to-skynet@v2
|
||||||
|
with:
|
||||||
|
input: 'skynet_ldap_backend'
|
||||||
|
token: ${{ secrets.API_TOKEN_FORGEJO }}
|
|
@ -1,87 +0,0 @@
|
||||||
# copied a good chunk from my bfom config
|
|
||||||
image: rust:latest
|
|
||||||
|
|
||||||
stages:
|
|
||||||
- lint
|
|
||||||
- build
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
# Set any required environment variables here
|
|
||||||
variables:
|
|
||||||
RUST_BACKTRACE: FULL
|
|
||||||
|
|
||||||
.scripts_cache: &scripts_cache
|
|
||||||
- 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
|
|
||||||
|
|
||||||
# clippy and fmt are magic
|
|
||||||
# runs on all commits/branches
|
|
||||||
lint-clippy:
|
|
||||||
stage: lint
|
|
||||||
script:
|
|
||||||
- rustup component add clippy
|
|
||||||
- rustc --version
|
|
||||||
- cargo version
|
|
||||||
- cargo clippy
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_TAG
|
|
||||||
when: never
|
|
||||||
- changes:
|
|
||||||
- src/**/*
|
|
||||||
- Cargo.*
|
|
||||||
when: always
|
|
||||||
|
|
||||||
lint-fmt:
|
|
||||||
stage: lint
|
|
||||||
script:
|
|
||||||
- rustup component add rustfmt
|
|
||||||
- rustc --version
|
|
||||||
- cargo version
|
|
||||||
- cargo fmt -- --check
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_TAG
|
|
||||||
when: never
|
|
||||||
- changes:
|
|
||||||
- src/**/*
|
|
||||||
- Cargo.*
|
|
||||||
when: always
|
|
||||||
|
|
||||||
|
|
||||||
# has to actually compile
|
|
||||||
build:
|
|
||||||
stage: build
|
|
||||||
tags:
|
|
||||||
- nix
|
|
||||||
before_script:
|
|
||||||
- *scripts_cache
|
|
||||||
script:
|
|
||||||
- attic watch-store skynet-cache &
|
|
||||||
- nix --extra-experimental-features "nix-command flakes" build --verbose
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_TAG
|
|
||||||
when: never
|
|
||||||
- changes:
|
|
||||||
- src/**/*
|
|
||||||
- Cargo.*
|
|
||||||
when: on_success
|
|
||||||
|
|
||||||
|
|
||||||
# from https://docs.gitlab.com/ee/ci/pipelines/multi_project_pipelines.html
|
|
||||||
# so simple to deploy now
|
|
||||||
nixos:
|
|
||||||
stage: deploy
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "skynet_ldap_backend"
|
|
||||||
UPDATE_FLAKE: "yes"
|
|
||||||
trigger: compsoc1/skynet/nixos
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_TAG
|
|
||||||
when: never
|
|
||||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
||||||
when: on_success
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue