Skip to content

Commit a92770e

Browse files
committed
Make sure test-macos artifacts have unique name
1 parent e693d30 commit a92770e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/nightly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -256,26 +256,26 @@ jobs:
256256
- name: Test
257257
uses: ./.github/actions/test-macos
258258
with:
259-
testArtifacts: ${{ matrix.branch.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}
259+
testArtifacts: ${{ matrix.branch.name }}_${{ matrix.arch }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}
260260
- name: Test Tracing JIT
261261
uses: ./.github/actions/test-macos
262262
with:
263-
testArtifacts: ${{ matrix.branch.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Tracing JIT
263+
testArtifacts: ${{ matrix.branch.name }}_${{ matrix.arch }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Tracing JIT
264264
jitType: tracing
265265
runTestsParameters: >-
266266
-d zend_extension=opcache.so
267267
-d opcache.enable_cli=1
268268
- name: Test OpCache
269269
uses: ./.github/actions/test-macos
270270
with:
271-
testArtifacts: ${{ matrix.branch.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} OpCache
271+
testArtifacts: ${{ matrix.branch.name }}_${{ matrix.arch }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} OpCache
272272
runTestsParameters: >-
273273
-d zend_extension=opcache.so
274274
-d opcache.enable_cli=1
275275
- name: Test Function JIT
276276
uses: ./.github/actions/test-macos
277277
with:
278-
testArtifacts: ${{ matrix.branch.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Function JIT
278+
testArtifacts: ${{ matrix.branch.name }}_${{ matrix.arch }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Function JIT
279279
jitType: function
280280
runTestsParameters: >-
281281
-d zend_extension=opcache.so

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
- name: Test Tracing JIT
182182
uses: ./.github/actions/test-macos
183183
with:
184-
testArtifacts: ${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Tracing JIT
184+
testArtifacts: ${{ matrix.arch }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Tracing JIT
185185
jitType: tracing
186186
runTestsParameters: >-
187187
-d zend_extension=opcache.so

0 commit comments

Comments
 (0)