aur/.woodpecker.yml

32 lines
1.1 KiB
YAML
Raw Normal View History

2024-04-26 08:45:34 +02:00
labels:
backend: docker
2023-12-26 10:02:13 +01:00
clone:
git:
image: woodpeckerci/plugin-git:2.5.2
2023-12-26 10:02:13 +01:00
settings:
partial: false
depth: 10
2023-11-26 12:31:28 +01:00
steps:
2022-11-16 22:07:36 +01:00
build:
2023-12-26 09:46:12 +01:00
image: archlinux/archlinux:base-devel
2022-11-16 22:07:36 +01:00
pull: true
2022-07-14 09:51:09 +02:00
volumes:
2023-05-29 16:14:46 +02:00
- /mnt/archlinux/nyyu:/repo
2022-07-14 09:51:09 +02:00
commands:
2023-05-29 16:14:46 +02:00
- cp -f conf/{makepkg,pacman}.conf /etc/
- cat conf/pacman-conf.d-noextract.conf >> /etc/pacman.conf
- pacman-key --init
2024-04-07 11:28:21 +02:00
- pacman -Syu git jq pacman-contrib pandoc-bin unzip zip --noconfirm
2023-05-29 16:14:46 +02:00
- useradd build -m
- "echo 'build ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers"
2023-12-09 14:19:53 +01:00
- mkdir /build
- chown -R build:build . /build
2023-05-29 16:14:46 +02:00
- sudo -u build --preserve-env=PGP_KEY,PGP_PWD,PGP_ID sh -c 'mkdir ~/.gnupg && echo -e "default-cache-ttl 3600\nallow-preset-passphrase" > ~/.gnupg/gpg-agent.conf && echo "$PGP_KEY" | gpg --import --no-tty --batch --yes && echo "$PGP_PWD" | /usr/lib/gnupg/gpg-preset-passphrase --preset $PGP_ID'
2024-07-15 07:26:30 +02:00
- sudo -u build --preserve-env=CI_REPO_CLONE_URL,CI_COMMIT_BRANCH,CI_PREV_COMMIT_SHA,GIT_USER,GIT_TOKEN sh -c './build.sh'
secrets: [pgp_id, pgp_key, pgp_pwd, git_user, git_token]
2022-11-16 22:07:36 +01:00
when:
2022-11-21 18:16:47 +01:00
branch: master
2023-05-29 16:14:46 +02:00
event: [push, cron, tag, manual]