nix-packages/.woodpecker/update.yaml

123 lines
4.6 KiB
YAML
Raw Normal View History

2023-04-09 07:46:06 +00:00
pipeline:
2023-04-10 08:17:29 +00:00
clone2:
image: nixery.dev/shell/gitfull
commands:
- cd ..
- rm -rf $CI_REPO_NAME
- git clone https://git.chir.rs/$CI_REPO_OWNER/$CI_REPO_NAME
- cd $CI_REPO_NAME
when:
- event: cron
- event: manual
2023-04-12 11:52:12 +00:00
update-${PACKAGE}:
2023-04-09 07:55:44 +00:00
image: nixos/nix
2023-04-09 07:46:06 +00:00
commands:
- mkdir -p /etc/nix
- |
cat > /etc/nix/nix.conf << EOF
# WARNING: this file is generated from the nix.* options in
# your NixOS configuration, typically
# /etc/nixos/configuration.nix. Do not edit it!
2023-04-09 08:25:23 +00:00
build-users-group = nixbld
2023-04-09 07:46:06 +00:00
allowed-users = *
auto-optimise-store = true
builders-use-substitutes = true
require-sigs = true
2023-04-09 08:25:23 +00:00
sandbox = false
2023-04-10 08:17:29 +00:00
substituters = https://hydra.int.chir.rs/ https://cache.nixos.org/
2023-04-09 08:25:23 +00:00
system-features = big-parallel benchmark ca-derivations
2023-04-09 07:46:06 +00:00
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nixcache:8KKuGz95Pk4UJ5W/Ni+pN+v+LDTkMMFV4yrGmAYgkDg= hydra.nixos.org-1:CNHJZBh9K4tP3EKF6FkkgeVYsS3ohTl+oS0Qa8bezVs= chir-rs:AnwyFacopHSkprD6aXY4/R3J9JYzTbV2rosJCBPaB28=
trusted-substituters =
trusted-users = @wheel
experimental-features = nix-command flakes ca-derivations
EOF
2023-04-10 13:50:17 +00:00
- mkdir -p /tmp2
- chmod 1777 /tmp2
- export TMPDIR=/tmp2
2023-04-12 11:52:12 +00:00
- yes '' | nix-shell ./scripts/update.nix --argstr path ${PACKAGE}
2023-04-09 07:46:06 +00:00
when:
- event: cron
- event: manual
2023-04-09 07:55:44 +00:00
format:
image: nixery.dev/shell/alejandra
commands:
- alejandra .
2023-04-09 07:59:17 +00:00
when:
- event: cron
- event: manual
2023-04-09 07:46:06 +00:00
git-push:
image: nixery.dev/shell/openssh/gitfull/git-lfs/gnupg/shadow
commands:
- groupadd -g 0 root
- useradd -u 0 -g root -d $HOME root
- mkdir -p ~/.ssh
- echo "$SSH_KEY" > ~/.ssh/id_ed25519
- chmod 600 ~/.ssh/id_ed25519
- echo "git.chir.rs ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICQ77jA9S5qXDFGPLZRsC++AtxiXXeF8gVbkLlglx0GQ" > ~/.ssh/known_hosts
- echo "git.chir.rs ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDY0pZzNTAqaVqqfC31gYFixFs5KySv0UqvlDEAzEXJMB/pBWkE5GAd5Ik1NxD4QiAVWc2UARdmJEBbYf8mk5JiAv6fjsodJdJVRau4Ax7FtIfbxdFyzBgFery/KUnNIr6cmAWU2Af8JhzrnpEbhe5U3LftYnkdE1lI+iVqaQRARp0qikdzoAl3uMUhbdTxp1/6rtfN6bP2XZCsUx3t3W5ZG1QTQz8l7nrbXZX1TT3pZ2vcUANcMtOxEAwO6lbL210GX63C8XEoE7+4lLxRrSiaq3SkVlG07VspozKEtrrcsqCRNLebiaapmNWVoEq9Wd9VGAEjja5efyU6/HUlRogAOo1WP73UwoQLv5LTFH+ECoHhKS14xfPeXeVG8dbYyh5+CnmiVe43dH1qZw+ceYuYel31f47cAgScbxFvNkct0spK9m9mivnoUmYcxwTc+VbFbmnJvSuZw3a+OEYn9biitP/tTkYFiLZVdPZTxDkvd1oOyuVH9d4RMXbVgNS92/lr2iKFZkyhWMJ61hFMc2tupwmkp5Us5ce42XA0zC/aVY3vYoih/c5Ib0eZF1AEJdB6Bt5dWqITVsB3mip3Jn/mqVBIPTGXT6+FnGSEuL68Dj2yKBD7kj8YO/1SWpkVMy+bfoLXY/usgcaLCxpUu8dDrdrcKExLigCVbi3rdRmg7w==" >> ~/.ssh/known_hosts
2023-04-10 08:17:29 +00:00
- git remote set-url origin gitea@git.chir.rs:$CI_REPO_OWNER/$CI_REPO_NAME.git
2023-04-09 07:46:06 +00:00
- git config --global 'user.email' 'gitea-bot@chir.rs'
- git config --global 'user.name' 'Gitea Bot'
- echo "$GPG_KEY" | gpg --import
- git config --global "user.signingKey" "0x417A4BCCAB696E24"
- git config --global "commit.gpgSign" "true"
- git add .
2023-04-12 12:23:18 +00:00
- git commit -am "Update ${PACKAGE}"
2023-04-12 11:52:12 +00:00
- git push --force origin main:update-${PACKAGE}
2023-04-09 07:46:06 +00:00
secrets:
- gpg_key
- ssh_key
when:
- event: cron
- event: manual
gitea-pr:
image: nixery.dev/shell/curl
commands:
- |
2023-04-12 12:23:18 +00:00
echo '{ "assignee": "darkkirb", "base": "main", "head": "update-${PACKAGE}", "title": "Update ${PACKAGE}", "body": "" }' | curl -X POST -H "Authorization: token $GITEA_TOKEN" -H "Content-Type: application/json" --data-binary @- "https://git.chir.rs/api/v1/repos/$CI_REPO_OWNER/$CI_REPO_NAME/pulls"
2023-04-09 07:46:06 +00:00
secrets:
- gitea_token
when:
- event: cron
- event: manual
2023-04-12 11:44:46 +00:00
matrix:
PACKAGE:
- akkoma
- pleroma-fe
- admin-fe
- emoji-volpeon-blobfox
- emoji-volpeon-bunhd
- emoji-volpeon-drgn
- emoji-volpeon-fox
- emoji-volpeon-gphn
- emoji-volpeon-raccoon
- emoji-volpeon-vlpn
- emoji-caro
- lotte-art
- nasin-nanpa
- matrix-media-repo
- mautrix-discord
- mautrix-whatsapp
- mautrix-signal
- mautrix-telegram
- python-mautrix
- python-tulir-telethon
- papermc
- python-plover-stroke
- python-rtf-tokenize
- plover
- plover-plugins-manager
- python-simplefuzzyset
- plover-plugin-emoji
- plover-plugin-tapey-tape
- plover-plugin-yaml-dictionary
- plover-plugin-machine-hid
- plover-plugin-rkb1-hid
- plover-dict-didoesdigital
- miifox-net
- python-instagram
- element-web
- woodpecker-server
2023-04-25 06:31:46 +00:00
- wordpress-plugins
2023-04-12 11:48:35 +00:00
skip_clone: true