-
-
Notifications
You must be signed in to change notification settings - Fork 0
111 lines (94 loc) · 3 KB
/
phpdoc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# This file is part of the sshilko/php-api-myrpc package.
#
# (c) Sergei Shilko <[email protected]>
#
# MIT License
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
# @license https://opensource.org/licenses/mit-license.php MIT
name: PHPDocumentor
on:
workflow_run:
workflows: [ "Docker" ]
types:
- completed
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip-ci')"
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Load cached app docker image
id: docker-php-image-cache
uses: actions/cache@v3
with:
path: /tmp/docker-save
key: ${{ runner.os }}-docker-php-build-save-${{ hashFiles('build/Dockerfile.php.common', 'build/Dockerfile.php81') }}
- name: Load cached Docker image
run: docker load -i /tmp/docker-save/snapshot.tar && docker tag app/php-image-cache app/php
if: steps.docker-php-image-cache.outputs.cache-hit == 'true'
- name: Docker boot
env:
DOCKER_BUILDKIT: '1'
COMPOSE_DOCKER_CLI_BUILD: '1'
SERVICES_NAME: "app.php"
run: docker-compose up -d $SERVICES_NAME
- run: docker-compose ps
- name: Sleep
run: sleep 6
timeout-minutes: 1
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('composer.lock') }}-composer-dev
- name: Docker install dependencies
run: docker-compose exec -T app.php composer install
# Docs: https://phpunit.readthedocs.io/en/9.5/
- name: Docker run PHPDoc
run: docker-compose exec -T app.php composer app-phpdoc
# https://github.com/actions/upload-artifact
- name: Upload PHPDoc artifacts
uses: actions/upload-artifact@v3
with:
name: phpdoc-output
path: |
build/tmp/phpdoc-output
retention-days: 1
docs:
needs: build
runs-on: ubuntu-latest
timeout-minutes: 2
permissions: write-all
steps:
# https://github.com/actions/checkout
- name: Checkout pages branch
uses: actions/checkout@v3
with:
ref: pages
# https://github.com/marketplace/actions/download-a-build-artifact
- name: Download all PHPUnit artifacts
uses: actions/download-artifact@v3
with:
name: phpdoc-output
path: php/phpdoc
- uses: nick-fields/retry@v2
name: Commit phpdoc details
continue-on-error: true
with:
timeout_seconds: 20
max_attempts: 3
retry_on: error
command: |
git status
git config user.name github-actions
git config user.email [email protected]
git pull
git add php/phpdoc/*
git commit -m "generated phpdoc artifacts from revision ${GITHUB_SHA::7}"
git push