This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/.build.yml

31 lines
1,001 B
YAML
Raw Normal View History

2020-08-17 12:32:40 +02:00
image: archlinux
packages:
- docker
sources:
- https://git.sr.ht/~crocmagnon/blog
secrets:
2020-09-12 16:31:05 +02:00
- 388c4445-d732-440b-8ff5-fc5dfb46f04a
2020-08-17 12:32:40 +02:00
- 29bc352f-0807-46e9-a4ef-2f869f94afa3
- 5c948915-48c2-4542-8fc1-a5676f4d7126
2020-08-18 08:08:07 +02:00
environment:
TESTING: true
BLOG_TESTS: rg.fr-par.scw.cloud/crocmagnon/blog:tests
BLOG_LATEST: rg.fr-par.scw.cloud/crocmagnon/blog:latest
2020-08-17 12:32:40 +02:00
tasks:
- setup_docker: |
./blog/docker/setup-docker
- build_and_test: |
2020-09-12 16:31:05 +02:00
docker login rg.fr-par.scw.cloud/crocmagnon -u nologin --password-stdin < .docker-secret
2020-08-21 14:32:01 +02:00
cd blog
2020-11-10 15:48:51 +01:00
docker pull $BLOG_LATEST || true
docker build --pull --cache-from $BLOG_LATEST -t $BLOG_LATEST -f Dockerfile .
docker build -t $BLOG_TESTS -f tests.Dockerfile .
docker run --rm -t $BLOG_TESTS /app/docker/runtests.sh
docker push $BLOG_LATEST
2020-08-17 12:32:40 +02:00
- deploy: |
ssh blog -o StrictHostKeyChecking=no "/srv/blog/redeploy"
2020-08-18 11:02:54 +02:00
triggers:
- action: email
condition: failure
to: Gabriel Augendre <gabriel@augendre.info>