.github/workflows/deploy.yaml: try to use the acdh-oeaw/arche_cicd_fi… #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test and deploy | |
on: | |
workflow_dispatch: | |
inputs: | |
deploy: | |
type: boolean | |
description: Deploy if not a release | |
default: false | |
push: ~ | |
release: | |
types: [published] | |
env: | |
RANCHER_PROJECT: Dissemination services | |
RANCHER_NAMESPACE: arche-biblatex | |
jobs: | |
testAndDeploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
extensions: json,yaml,pdo,pdo_sqlite | |
coverage: xdebug | |
- name: composer | |
run: | | |
composer update | |
#- name: phpstan | |
# run: | | |
# vendor/bin/phpstan analyze -l 6 src index.php | |
- name: phpunit | |
run: | | |
XDEBUG_MODE=coverage vendor/bin/phpunit --display-deprecations --display-phpunit-deprecations --display-notices --display-warnings | |
- name: prepare arche-prod and arche-cur configs | |
run: | | |
mkdir tmp && cd tmp | |
composer require -n zozlak/yaml-merge | |
curl https://arche.acdh.oeaw.ac.at/api/describe > prod.yaml | |
curl https://arche-curation.acdh-dev.oeaw.ac.at/api/describe > cur.yaml | |
vendor/bin/yaml-edit.php --src prod.yaml --src '{"dbConn": {"guest": "pgsql: host=10.6.16.94 port=5433 user=arche_thumbnails dbname=arche_prod"}}' ../archeProd.yaml | |
vendor/bin/yaml-edit.php --src cur.yaml --src '{"dbConn": {"guest": "pgsql: host=10.6.16.94 port=5433 user=arche_thumbnails dbname=arche_cur"}}' ../archeCur.yaml | |
cd .. && rm -fR tmp | |
- name: build docker image | |
run: | | |
git reset --hard HEAD | |
rm -fR vendor | |
mkdir build/docroot && cp -R `ls -1 | grep -v ^build` build/docroot/ && cp build/config/arche.yaml build/docroot/config.yaml | |
docker build --rm -t "acdhch/$RANCHER_NAMESPACE:latest" --build-arg VARIANT=production --label "buildUrl=$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" build | |
- name: test image | |
run: | | |
docker run -d --name "$RANCHER_NAMESPACE" -v `pwd`/tests/config.yaml:/var/www/html/config.yaml -p 8080:80 "acdhch/$RANCHER_NAMESPACE:latest" | |
sleep 1 | |
curl -f -i 'http://127.0.0.1:8080/?id=https%3A%2F%2Fhdl.handle.net%2F21.11115%2F0000-000E-5942-4' | |
curl -f -i 'http://127.0.0.1:8080/?id=https%3A%2F%2Fhdl.handle.net%2F21.11115%2F0000-000E-5942-4' | |
- uses: acdh-oeaw/arche_cicd_finish_action@main | |
with: | |
pushAndRedeploy: ${{ github.event_name == 'release' && github.event.action == 'published' || inputs.deploy }} | |
dockerhubLogin: ${{ secrets.DOCKER_USERNAME }} | |
dockehubPassword: ${{ secrets.DOCKER_PASSWORD }} | |
imageName: $RANCHER_NAMESPACE | |
rancherProject: $RANCHER_PROJECT | |
rancherNamespace: $RANCHER_NAMESPACE | |
rancherToken: ${{ secrets.RANCHERTOKEN }} | |
coverallsToken: ${{ secrets.coverallsToken }} |