Skip to content

Commit 6dcf7de

Browse files
committed
wip
1 parent 91f94a9 commit 6dcf7de

File tree

2 files changed

+37
-37
lines changed

2 files changed

+37
-37
lines changed

.github/nightly_matrix.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ function get_branch_matrix($branches) {
7373
$branch_key = strtoupper(str_replace('.', '', $branch));
7474
return [
7575
'name' => $branch_key,
76-
'branch' => $branch,
76+
'ref' => $branch,
7777
];
7878
}, $branches);
7979

80-
return ['branches' => $result];
80+
return ['branch' => $result];
8181
}
8282

8383
$branches = get_branches();

.github/workflows/nightly.yml

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -65,20 +65,20 @@ jobs:
6565
# extended: ${{ inputs.extendedTests }}
6666
# runTestsParameters: ${{ inputs.runTestsParameters }}
6767
debug_zts_msan:
68-
needs: generate_matrix
69-
strategy:
70-
matrix: ${{ fromJson(needs.generate_matrix.outputs.branch_matrix) }}
71-
fail-fast: false
72-
name: ${{ matrix.name }}
68+
# needs: generate_matrix
69+
# strategy:
70+
# matrix: ${{ fromJson(needs.generate_matrix.outputs.branch_matrix) }}
71+
# fail-fast: false
72+
# name: ${{ matrix.branch.name }}
7373
runs-on: ubuntu-20.04
7474
env:
75-
arch: linux-x64
75+
ARCH: linux-x64
7676
steps:
7777
- name: git checkout
7878
uses: actions/checkout@v2
7979
# Only test on current branch until merged
8080
# with:
81-
# ref: ${{ matrix.branch }}
81+
# ref: ${{ matrix.branch.ref }}
8282
- name: Install dependencies
8383
uses: ./.github/actions/deps
8484
- name: ./configure
@@ -143,20 +143,20 @@ jobs:
143143
extended: false
144144
runTestsParameters: '--msan'
145145
community:
146-
needs: generate_matrix
147-
strategy:
148-
matrix: ${{ fromJson(needs.generate_matrix.outputs.branch_matrix) }}
149-
fail-fast: false
150-
name: ${{ matrix.name }}
146+
# needs: generate_matrix
147+
# strategy:
148+
# matrix: ${{ fromJson(needs.generate_matrix.outputs.branch_matrix) }}
149+
# fail-fast: false
150+
# name: ${{ matrix.branch.name }}
151151
runs-on: ubuntu-20.04
152152
env:
153-
arch: linux-x64
153+
ARCH: linux-x64
154154
steps:
155155
- name: git checkout
156156
uses: actions/checkout@v2
157157
# Only test on current branch until merged
158158
# with:
159-
# ref: ${{ matrix.branch }}
159+
# ref: ${{ matrix.branch.ref }}
160160
- name: Install dependencies
161161
uses: ./.github/actions/deps
162162
- name: ./configure
@@ -253,20 +253,20 @@ jobs:
253253
sed -i 's/PHP_SAPI/"cli-server"/g' var/cache/dev/App_KernelDevDebugContainer.preload.php
254254
php -d opcache.preload=var/cache/dev/App_KernelDevDebugContainer.preload.php public/index.php
255255
coverage:
256-
needs: generate_matrix
257-
strategy:
258-
matrix: ${{ fromJson(needs.generate_matrix.outputs.branch_matrix) }}
259-
fail-fast: false
260-
name: ${{ matrix.name }}
256+
# needs: generate_matrix
257+
# strategy:
258+
# matrix: ${{ fromJson(needs.generate_matrix.outputs.branch_matrix) }}
259+
# fail-fast: false
260+
# name: ${{ matrix.branch.name }}
261261
runs-on: ubuntu-20.04
262262
env:
263-
arch: linux-x64
263+
ARCH: linux-x64
264264
steps:
265265
- name: git checkout
266266
uses: actions/checkout@v2
267267
# Only test on current branch until merged
268268
# with:
269-
# ref: ${{ matrix.branch }}
269+
# ref: ${{ matrix.branch.ref }}
270270
- name: Create mssql container
271271
uses: ./.github/actions/mssql
272272
- name: Install dependencies
@@ -303,20 +303,20 @@ jobs:
303303
# codeCoverageTool: 'Cobertura'
304304
# summaryFileLocation: coverage.xml
305305
opcache_variation:
306-
needs: generate_matrix
307-
strategy:
308-
matrix: ${{ fromJson(needs.generate_matrix.outputs.branch_matrix) }}
309-
fail-fast: false
310-
name: ${{ matrix.name }}
306+
# needs: generate_matrix
307+
# strategy:
308+
# matrix: ${{ fromJson(needs.generate_matrix.outputs.branch_matrix) }}
309+
# fail-fast: false
310+
# name: ${{ matrix.branch.name }}
311311
runs-on: ubuntu-20.04
312312
env:
313-
arch: linux-x64
313+
ARCH: linux-x64
314314
steps:
315315
- name: git checkout
316316
uses: actions/checkout@v2
317317
# Only test on current branch until merged
318318
# with:
319-
# ref: ${{ matrix.branch }}
319+
# ref: ${{ matrix.branch.ref }}
320320
- name: Create mssql container
321321
uses: ./.github/actions/mssql
322322
- name: Install dependencies
@@ -368,20 +368,20 @@ jobs:
368368
with:
369369
runTestsParameters: -d zend_extension=opcache.so --preload
370370
libmysqlclient_debug_nts:
371-
needs: generate_matrix
372-
strategy:
373-
matrix: ${{ fromJson(needs.generate_matrix.outputs.branch_matrix) }}
374-
fail-fast: false
375-
name: ${{ matrix.name }}
371+
# needs: generate_matrix
372+
# strategy:
373+
# matrix: ${{ fromJson(needs.generate_matrix.outputs.branch_matrix) }}
374+
# fail-fast: false
375+
# name: ${{ matrix.branch.name }}
376376
runs-on: ubuntu-20.04
377377
env:
378-
arch: linux-x64
378+
ARCH: linux-x64
379379
steps:
380380
- name: git checkout
381381
uses: actions/checkout@v2
382382
# Only test on current branch until merged
383383
# with:
384-
# ref: ${{ matrix.branch }}
384+
# ref: ${{ matrix.branch.ref }}
385385
- name: Install dependencies
386386
run: |
387387
sudo apt-get update -y | true

0 commit comments

Comments
 (0)