We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5acaf9 commit 63b3c61Copy full SHA for 63b3c61
.github/workflows/build.yml
@@ -130,11 +130,11 @@ jobs:
130
name: "distribution builds"
131
132
needs: [sanity]
133
-
134
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
135
strategy:
136
fail-fast: false
137
matrix:
+ os: [macos-latest, ubuntu-latest]
138
container:
139
- {os: 'almalinux', ver: '8'}
140
- {os: 'almalinux', ver: '9'}
@@ -153,10 +153,10 @@ jobs:
153
- {os: 'ubuntu', ver: 'lunar'}
154
- {os: 'ubuntu', ver: 'jammy'}
155
- {os: 'ubuntu', ver: 'focal'}
156
- - {os: 'macos', ver: 'latest'}
157
158
159
image: ${{ matrix.container.os }}:${{ matrix.container.ver }}
+ enabled: ${{ contains(matrix.os, 'ubuntu') }}
160
161
steps:
162
- name: checkout
0 commit comments