ci: switching over to using forgejo, so the gitlab config can eb removed
Some checks failed
On_Push / lint_fmt (push) Failing after 15s
On_Push / lint_clippy (push) Failing after 10s
On_Push / build (push) Has been skipped
On_Push / deploy (push) Has been skipped

This commit is contained in:
silver 2024-08-09 23:28:21 +01:00
parent 48b52f3c09
commit dcba5d2055
2 changed files with 64 additions and 88 deletions

View file

@ -0,0 +1,64 @@
name: On_Push
on:
push:
branches:
- 'main'
paths:
- flake.*
- src/**/*
- Cargo.*
- .forgejo/**/*
jobs:
# rust code must be formatted for standardisation
lint_fmt:
# build it using teh base nixos system, helps with caching
runs-on: nix
container:
image: rust:latest
steps:
# get the repo first
- uses: https://code.forgejo.org/actions/checkout@v4
#- run: rustup component add rustfmt
- run: rustc --version
- run: cargo version
- run: cargo fmt -- --check
# clippy is incredibly useful for making yer code better
lint_clippy:
# build it using teh base nixos system, helps with caching
runs-on: docker
container:
image: rust:latest
steps:
# get the repo first
- uses: https://code.forgejo.org/actions/checkout@v4
#- run: rustup component add clippy
- run: rustc --version
- run: cargo version
- run: cargo clippy
- run: cargo test --verbose
- run: nix build --verbose
build:
# build it using teh base nixos system, helps with caching
runs-on: nix
needs: [ lint_fmt, lint_clippy ]
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 container
runs-on: docker
needs: [ build ]
steps:
- name: "Deploy to Skynet"
uses: https://forgejo.skynet.ie/Skynet/actions-deploy-to-skynet@v2
with:
input: 'skynet_discord_bot'
token: ${{ secrets.API_TOKEN_FORGEJO }}

View file

@ -1,88 +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
- cargo test --verbose
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_discord_bot"
UPDATE_FLAKE: "yes"
trigger: compsoc1/skynet/nixos
rules:
- if: $CI_COMMIT_TAG
when: never
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
when: on_success