forked from pkp/omp
-
Notifications
You must be signed in to change notification settings - Fork 0
97 lines (92 loc) · 2.56 KB
/
schedule.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
on:
schedule:
- cron: '5 5 * * *'
name: schedule
jobs:
omp-main:
if: github.repository == 'pkp/omp'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- php-version: 8.2
validate: 'validate'
database: pgsql
test: 'test'
SAVE_BUILD: 'save_build'
- php-version: 8.2
validate: 'validate'
database: mariadb
test: 'test'
SAVE_BUILD: 'save_build'
- php-version: 8.2
validate: 'validate'
database: mysql
test: 'test'
SAVE_BUILD: 'save_build'
upgrade: 'upgrade'
upgrade_test: 'stable-3_3_0,stable-3_4_0'
name: omp
steps:
- uses: pkp/pkp-github-actions@v1
with:
node_version: 20
dataset_branch: 'main'
DATASETS_ACCESS_KEY: ${{secrets.DATASETS_ACCESS_KEY}}
DEBUG_IN_TMATE: false
omp-stable-3_4_0:
if: github.repository == 'pkp/omp'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- php-version: 8.1
validate: 'validate'
database: pgsql
test: 'test'
SAVE_BUILD: 'save_build'
- php-version: 8.1
database: mariadb
test: 'test'
SAVE_BUILD: 'save_build'
- php-version: 8.1
validate: 'validate'
database: mysql
test: 'test'
SAVE_BUILD: 'save_build'
upgrade: 'upgrade'
upgrade_test: '3.1.0,3.1.1-2,3.1.2,stable-3_2_0,stable-3_2_1,stable-3_3_0'
name: omp-stable-3_4_0
steps:
- uses: pkp/pkp-github-actions@v1
with:
node_version: 16
dataset_branch: 'stable-3_4_0'
DATASETS_ACCESS_KEY: ${{secrets.DATASETS_ACCESS_KEY}}
DEBUG_IN_TMATE: false
omp-stable-3_3_0:
if: github.repository == 'pkp/omp'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- php-version: 7.4
validate: 'validate'
database: pgsql
test: 'test'
SAVE_BUILD: 'save_build'
- php-version: 7.4
database: mysql
test: 'test'
SAVE_BUILD: 'save_build'
name: omp-stable-3_0
steps:
- uses: pkp/pkp-github-actions@v1
with:
node_version: 12
dataset_branch: 'stable-3_3_0'
DATASETS_ACCESS_KEY: ${{secrets.DATASETS_ACCESS_KEY}}
DEBUG_IN_TMATE: false