update ci conf
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/cron Pipeline failed

This commit is contained in:
Simon Vieille 2023-02-01 17:40:08 +01:00
parent c5999579ee
commit eb80319313
Signed by: deblan
GPG key ID: 579388D585F70417
2 changed files with 41 additions and 1 deletions

View file

@ -34,4 +34,4 @@ pipeline:
from_secret: mail_from
subject: "[{{ repo.owner }}/{{ repo.name }}] Pipeline #{{ build.number }}: {{ build.status }}"
when:
- status: [success, failure]
status: [success, failure]

40
.woodpecker/.cron.yml Normal file
View file

@ -0,0 +1,40 @@
matrix:
PHP_VERSION:
- 8.2
- 8.1
- 8.0
- 7.4
- 7.3
- 7.1
pipeline:
docker:
image: docker:dind
secrets: [registry_user, registry_password, registry_docker_password]
commands:
- echo "$REGISTRY_PASSWORD" | docker login -u "$REGISTRY_USER" --password-stdin gitnet.fr
- echo "$REGISTRY_DOCKER_PASSWORD" | docker login -u "$REGISTRY_USER" --password-stdin
- docker build -t "deblan/php:$PHP_VERSION" -f "./Dockerfile.php$PHP_VERSION" .
- docker tag "deblan/php:$PHP_VERSION" "gitnet.fr/deblan/php:$PHP_VERSION"
- docker push "gitnet.fr/deblan/php:$PHP_VERSION"
- docker push "deblan/php:$PHP_VERSION"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
when:
event: cron
mail:
image: deblan/woodpecker-email
settings:
host:
from_secret: mail_host
username:
from_secret: mail_username
password:
from_secret: mail_password
from:
from_secret: mail_from
subject: "[{{ repo.owner }}/{{ repo.name }}] Pipeline #{{ build.number }}: {{ build.status }}"
when:
event: cron
status: [success, failure]