mirror of
https://gitlab.blahai.gay/elissa/haipkgs.git
synced 2025-04-04 18:09:30 +00:00
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
default:
|
|
tags:
|
|
- nix
|
|
|
|
stages:
|
|
- update
|
|
- build
|
|
|
|
update_flake_inputs:
|
|
stage: update
|
|
tags:
|
|
- nix
|
|
before_script:
|
|
- git config --global user.name "haibot"
|
|
- git config --global user.email "haibot@blahai.gay"
|
|
- git remote set-url --push origin "https://gitlab-ci-token:${CI_JOB_TOKEN}@${CI_SERVER_HOST}/${CI_PROJECT_PATH}.git"
|
|
script:
|
|
- nix flake update --commit-lock-file
|
|
- nix run .#update
|
|
- git push origin HEAD:$CI_COMMIT_REF_NAME
|
|
rules:
|
|
- if: $CI_PIPELINE_SOURCE == "schedule"
|
|
when: always
|
|
- when: never
|
|
|
|
build_packages:
|
|
stage: build
|
|
tags:
|
|
- shell
|
|
- nix
|
|
script:
|
|
- |
|
|
nix run nixpkgs#nix-fast-build -- \
|
|
--skip-cached \
|
|
--no-nom \
|
|
--max-jobs 4 \
|
|
--option accept-flake-config true \
|
|
--flake .#hydraJobs.x86_64-linux \
|
|
--cachix-cache haipkgs
|
|
rules:
|
|
- if: '$CI_COMMIT_BRANCH == "main"'
|
|
changes:
|
|
- pkgs/**
|
|
- flake.lock
|
|
when: always
|
|
- when: never
|
|
variables:
|
|
CACHIX_SIGNING_KEY: $CACHIX_SIGNING_KEY
|
|
CACHIX_AUTH_TOKEN: $CACHIX_AUTH_TOKEN
|