2020-11-04 00:22:19 +00:00
|
|
|
---
|
2022-06-02 00:30:47 +00:00
|
|
|
# we rsync binaries.tar.gz from the same server we deploy to.
|
|
|
|
# it contains these static-pie binaries:
|
2023-11-24 20:58:45 +00:00
|
|
|
# hugo, brotli, ect (like gzip/zopfli), and xmllint.
|
2020-11-04 00:22:19 +00:00
|
|
|
image: alpine/edge
|
|
|
|
packages:
|
2023-11-24 20:58:45 +00:00
|
|
|
- curl # Fetches webmentions and webring links. Pre-inistalled.
|
2020-11-04 00:22:19 +00:00
|
|
|
- rsync
|
2023-11-24 20:58:45 +00:00
|
|
|
- git # Powers Hugo's gitInfo. Pre-installed
|
|
|
|
- bmake # gmake is fine too
|
2020-11-04 00:22:19 +00:00
|
|
|
sources:
|
|
|
|
- https://git.sr.ht/~seirdy/seirdy.one
|
|
|
|
secrets:
|
2022-12-19 18:23:00 +00:00
|
|
|
- cc1eb90c-b07b-4c46-86d4-58fec41cf0e4 # ssh key
|
|
|
|
- b0bfa66e-3cf2-468f-9ea4-085819eccd18 # webmentiond key
|
2020-11-04 00:22:19 +00:00
|
|
|
triggers:
|
|
|
|
- action: email
|
|
|
|
condition: always
|
2020-11-05 23:49:44 +00:00
|
|
|
to: seirdy@seirdy.one
|
2020-11-04 00:22:19 +00:00
|
|
|
tasks:
|
2020-12-24 01:02:43 +00:00
|
|
|
- deps: |
|
2023-11-24 20:58:45 +00:00
|
|
|
sh seirdy.one/scripts/setup-ci.sh
|
2020-12-24 05:47:58 +00:00
|
|
|
- build_deploy: |
|
2023-11-25 05:04:41 +00:00
|
|
|
export PATH=~/bin:$PATH
|
2020-12-24 05:47:58 +00:00
|
|
|
cd seirdy.one
|
2023-11-24 20:58:45 +00:00
|
|
|
bmake ci
|