We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37c582e commit 4d8185dCopy full SHA for 4d8185d
1 file changed
.github/workflows/newbuild.yml
@@ -147,10 +147,10 @@ jobs:
147
148
build-dep:
149
needs: [setup, prepare]
150
- if: needs.prepare.outputs.deps-to-build
+ if: needs.prepare.outputs.deps-to-build != ''
151
strategy:
152
matrix:
153
- dep: ${{ fromJSON(needs.prepare.outputs.deps-to-build || '[]') }}
+ dep: ${{ fromJSON(needs.prepare.outputs.deps-to-build) }}
154
fail-fast: false
155
name: build ${{ matrix.dep.name }} ${{ matrix.dep.repo }} ${{ matrix.dep.ref }} ${{ matrix.dep.arch }} ${{ matrix.dep.options && toJSON(matrix.dep.options) }}
156
runs-on: ${{ matrix.dep.name == 'core' && (matrix.dep.arch == 'arm64' && 'ubuntu-jammy-16-cores-amd64' || 'ubuntu-latest-16-cores') || (matrix.dep.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest') }}
0 commit comments