From b1bf3a42a137679a24e47ae5148172011d304da7 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 9 Jan 2023 22:51:39 +0100 Subject: [PATCH] ci(conf): use deblan php images --- .woodpecker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 5acc7f1..76572da 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -22,7 +22,7 @@ pipeline: - mysql -hdb -uroot -proot -e "CREATE DATABASE app_test" config: - image: deblan/php:8.1 + image: gitnet.fr/deblan/php:8.1 commands: - echo APP_ENV=prod >> .env.local - echo APP_SECRET=$(openssl rand -hex 32) >> .env.local @@ -30,13 +30,13 @@ pipeline: - echo DATABASE_URL=mysql://root:root@db/app_test >> .env.test.local composer: - image: deblan/php:${PHP_VERSION} + image: gitnet.fr/deblan/php:${PHP_VERSION} commands: - apt-get update && apt-get -y install git - composer install --no-scripts migrate: - image: deblan/php:${PHP_VERSION} + image: gitnet.fr/deblan/php:${PHP_VERSION} environment: - PHP=php commands: @@ -51,7 +51,7 @@ pipeline: - npm run build tests: - image: deblan/php:${PHP_VERSION} + image: gitnet.fr/deblan/php:${PHP_VERSION} commands: - composer install --no-scripts --dev - vendor/bin/bdi detect drivers