We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd65240 commit caeddb4Copy full SHA for caeddb4
.github/workflows/push.yml
@@ -74,11 +74,18 @@ jobs:
74
- debug: false
75
zts: false
76
asan: false
77
+ arch: X64
78
- debug: true
79
zts: true
80
asan: true
- name: "LINUX_X64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || '' }}"
81
- runs-on: ubuntu-24.04
82
+ - debug: true
83
+ zts: true
84
+ asan: false
85
+ arch: ARM64
86
+
87
+ name: "LINUX_${{ matrix.arch }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || '' }}"
88
+ runs-on: ubuntu-24.04${{ matrix.arch == 'ARM64' && '-arm' || '' }}
89
timeout-minutes: 50
90
steps:
91
- name: git checkout
0 commit comments