-
-
Notifications
You must be signed in to change notification settings - Fork 14
101 lines (85 loc) · 2.8 KB
/
testsuite.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
name: Test Suite
on: [ push, pull_request, workflow_dispatch ]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
env:
APPLICATION_ENV: testing
NODE_ENV: production
steps:
- uses: actions/checkout@master
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
tools: composer:v2, cs2pr
- name: Cache PHP dependencies
uses: actions/cache@v4
with:
path: www/vendor
key: ${{ runner.OS }}-build-${{ hashFiles('**/composer.lock') }}
- name: Run Composer install
working-directory: ./www
run: |
composer install --no-interaction --ignore-platform-reqs
- name : Run PHP Linter
working-directory : ./www
run : |
vendor/bin/parallel-lint . --exclude vendor --checkstyle | cs2pr
- name : Run PHPStan
working-directory : ./www
run : |
vendor/bin/phpstan analyze --error-format=checkstyle | cs2pr
- name : Run PHP Code Sniffer
working-directory : ./www
run : |
vendor/bin/phpcs --report=checkstyle | cs2pr
publish:
name: Publish
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Reduce Git repository size.
run: |
git gc --prune=now --aggressive
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
id: qemu
with:
platforms: arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: |
azuracast/azurarelay
ghcr.io/azuracast/relay
tags: |
type=raw,value=latest,enable=${{ endsWith(github.ref, github.event.repository.default_branch) }}
type=ref,event=branch
type=semver,pattern={{version}}
- name: Publish to Docker Hub
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=ghcr.io/azuracast/relay:buildcache,mode=max
cache-to: type=registry,ref=ghcr.io/azuracast/relay:buildcache,mode=max