Skip to content

Commit ed2ca23

Browse files
committed
Fix naming for artifacts
1 parent 44871dd commit ed2ca23

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: Zephir Parser CI
22

33
on:
44
schedule:
@@ -227,20 +227,24 @@ jobs:
227227

228228
matrix:
229229
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
230+
arch: 'x64'
231+
build_type: 'nts'
230232
name:
231-
- Ubuntu
232-
- macOS
233+
- ubuntu
234+
- macos
233235

234236
include:
235-
- name: Ubuntu
237+
- name: ubuntu
236238
os: ubuntu-18.04
237239
ccov: ON
240+
compiler: gcc
238241

239-
- name: macOS
242+
- name: macos
240243
os: macos-latest
241244
ccov: OFF
245+
compiler: clang
242246

243-
name: "${{ matrix.name }}: PHP ${{ matrix.php }}"
247+
name: "PHP-${{ matrix.php }}-${{ matrix.build_type }}-${{ runner.os }}-${{ matrix.compiler }}-${{ matrix.arch }}"
244248
runs-on: ${{ matrix.os }}
245249

246250
env:
@@ -258,6 +262,8 @@ jobs:
258262
with:
259263
php-version: '${{ matrix.php }}'
260264
coverage: none
265+
env:
266+
PHPTS: ${{ matrix.build_type }}
261267

262268
- name: Cache RE2C Downloads
263269
uses: actions/cache@v2
@@ -342,6 +348,6 @@ jobs:
342348
- name: Upload Zephir Parser
343349
uses: actions/upload-artifact@v2
344350
with:
345-
name: zephir-parser-v${{env.ZEPHIR_PARSER_VERSION}}-php-${{ matrix.php }}-${{ runner.os }}
351+
name: zephir-parser-php-${{ matrix.php }}-${{ matrix.build_type }}-${{ runner.os }}-${{ matrix.compiler }}-${{ matrix.arch }}
346352
path: |
347353
${{ github.workspace }}/modules/*.so

0 commit comments

Comments
 (0)