-
Notifications
You must be signed in to change notification settings - Fork 1
85 lines (80 loc) · 2.09 KB
/
workflow.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
name: Update
on:
push:
branches:
- master
schedule:
- cron: '0 2 * * *'
pull_request:
workflow_dispatch:
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
GITHUB_MACHINE_USER_API_TOKEN: ${{ secrets.GIT_GITHUB_MACHINE_USER_API_TOKEN }}
GITHUB_MACHINE_USER: ${{ secrets.GIT_GITHUB_MACHINE_USER }}
GIT_USER_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
GIT_USER_NAME: ${{ secrets.GIT_USER_NAME }}
jobs:
repos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions
with:
dir: repos
script: drupal-vanilla
alpine:
runs-on: ubuntu-latest
strategy:
matrix:
script: [mariadb,nginx,opensmtpd,varnish,squid]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions
with:
dir: alpine
script: ${{ matrix.script }}
images:
runs-on: ubuntu-latest
strategy:
matrix:
script: [alpine,apache,memcached,node,php,postgres,python,redis,valkey,ruby]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions
with:
dir: images
script: ${{ matrix.script }}
stability-tags:
runs-on: ubuntu-latest
strategy:
matrix:
script: [drupal-php,wordpress-php,adminer-php,matomo-php,webgrind-php,laravel-php,drupal,wordpress,xhprof]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions
with:
dir: stability-tags
script: ${{ matrix.script }}
upstream:
runs-on: ubuntu-latest
strategy:
matrix:
script: [adminer,cachet,drupal,elasticsearch,kibana,mariadb,matomo,nginx,varnish,webgrind,wordpress,xhprof,]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions
with:
dir: upstream
script: ${{ matrix.script }}
docker4x:
runs-on: ubuntu-latest
strategy:
matrix:
script: [drupal,php,python,ruby,wordpress,laravel]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions
with:
dir: docker4x
script: ${{ matrix.script }}