2022-11-01 16:28:28 +00:00
|
|
|
image: alpine/edge
|
2023-03-23 17:53:16 +00:00
|
|
|
environment:
|
|
|
|
FF_ENABLE_COMMIT_DATA: "true"
|
2023-03-24 17:36:48 +00:00
|
|
|
FF_GENERATE_SOCIAL_CARDS: "true"
|
2023-10-06 16:58:45 +00:00
|
|
|
SKIP_VENV_SETUP: "true"
|
2022-11-01 16:28:28 +00:00
|
|
|
packages:
|
|
|
|
- openssh-client
|
2023-10-06 16:58:45 +00:00
|
|
|
- rsync
|
2022-11-01 16:28:28 +00:00
|
|
|
- python3
|
|
|
|
- py3-pip
|
2023-02-18 17:50:05 +00:00
|
|
|
- py3-wheel
|
|
|
|
- py3-setuptools
|
2023-03-24 17:36:48 +00:00
|
|
|
- cairo-dev
|
|
|
|
- freetype-dev
|
|
|
|
- libffi-dev
|
|
|
|
- jpeg-dev
|
|
|
|
- libpng-dev
|
|
|
|
- zlib-dev
|
2022-11-01 16:28:28 +00:00
|
|
|
sources:
|
2023-10-06 16:43:50 +00:00
|
|
|
- https://git.sr.ht/~ajhalili2006/web
|
2023-01-19 11:35:32 +00:00
|
|
|
secrets:
|
|
|
|
- b4ffc5fb-bc8c-4e89-b38a-48b56155a443
|
2022-11-01 16:28:28 +00:00
|
|
|
triggers:
|
|
|
|
- action: email
|
|
|
|
condition: always
|
2023-01-19 11:35:32 +00:00
|
|
|
to: ~ajhalili2006/public-inbox@lists.sr.ht
|
|
|
|
cc: ajhalili2006@gmail.com
|
2022-11-01 16:28:28 +00:00
|
|
|
tasks:
|
2023-02-18 17:50:05 +00:00
|
|
|
# in case of triggered from hottub
|
|
|
|
- repo-sync: |
|
2023-10-06 16:49:51 +00:00
|
|
|
cd web
|
2023-01-19 11:35:32 +00:00
|
|
|
- build: |
|
2023-10-06 16:58:45 +00:00
|
|
|
# https://www.jeffgeerling.com/blog/2023/how-solve-error-externally-managed-environment-when-installing-pip3
|
|
|
|
sudo rm /usr/lib/python3*/EXTERNALLY-MANAGED -rfv
|
|
|
|
|
|
|
|
cd web
|
|
|
|
|
|
|
|
# our build script handles both the install and build stuff itself
|
2023-01-19 11:45:18 +00:00
|
|
|
export PATH="$PATH:$HOME/.local/bin"
|
2023-07-15 16:22:08 +00:00
|
|
|
bash ./build.sh
|
2023-02-19 16:01:50 +00:00
|
|
|
- generate-archive: |
|
2023-10-06 16:49:51 +00:00
|
|
|
cd web
|
2023-07-15 16:22:08 +00:00
|
|
|
tar -C public -cvz . -f tildeweb-prod-build.tar.gz
|
2023-03-23 17:53:16 +00:00
|
|
|
- deploy: |
|
2023-10-06 16:49:51 +00:00
|
|
|
cd web
|
2023-10-06 16:43:50 +00:00
|
|
|
echo "StrictHostKeyChecking=no" >> ~/.ssh/config
|
|
|
|
rsync -rP -e 'ssh -i ~/.ssh/passwordless-auth-sshfs' public/ ajhalili2006@p.projectsegfau.lt:/home/ajhalili2006/public_html
|
|
|
|
rsync -rP -e 'ssh -i ~/.ssh/passwordless-auth-sshfs' public/ ajhalili2006@ctrl-c.club:/home/ajhalili2006/public_html
|
2023-02-19 16:01:50 +00:00
|
|
|
artifacts:
|
2023-10-06 16:49:51 +00:00
|
|
|
- web/tildeweb-prod-build.tar.gz
|