haipkgs/.gitlab-ci.yml
2025-03-10 08:27:09 +00:00

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