File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 PHPBB_BRANCH :
2626 required : true
2727 type : string
28+ RUN_BASIC_JOBS :
29+ required : false
30+ type : string
31+ default : ' 1'
32+ RUN_MYSQL_JOBS :
33+ required : false
34+ type : string
35+ default : ' 1'
36+ RUN_POSTGRESQL_JOBS :
37+ required : false
38+ type : string
39+ default : ' 1'
40+ RUN_MSSQL_JOBS :
41+ required : false
42+ type : string
43+ default : ' 1'
2844 secrets :
2945 CODECOV_TOKEN :
3046 required : false
4258jobs :
4359 # START Basic Checks Job (EPV, code sniffer, images check, etc.)
4460 basic-checks :
61+ if : ${{ inputs.RUN_BASIC_JOBS == '1' }}
4562 runs-on : ubuntu-22.04
4663 strategy :
4764 matrix :
@@ -110,6 +127,7 @@ jobs:
110127
111128 # START MySQL and MariaDB Job
112129 mysql-tests :
130+ if : ${{ inputs.RUN_MYSQL_JOBS == '1' }}
113131 runs-on : ubuntu-22.04
114132 strategy :
115133 matrix :
@@ -254,6 +272,7 @@ jobs:
254272
255273 # START PostgreSQL Job
256274 postgres-tests :
275+ if : ${{ inputs.RUN_POSTGRESQL_JOBS == '1' }}
257276 runs-on : ubuntu-22.04
258277 strategy :
259278 matrix :
@@ -370,6 +389,7 @@ jobs:
370389
371390 # START Other Tests Job (SQLite 3 and mssql)
372391 other-tests :
392+ if : ${{ inputs.RUN_MSSQL_JOBS == '1' }}
373393 runs-on : ubuntu-22.04
374394 strategy :
375395 matrix :
You can’t perform that action at this time.
0 commit comments