Skip to content

Commit f789c4f

Browse files
committed
CI: Fix job dependencies
1 parent d43d328 commit f789c4f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test-and-publish-nightly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
integ-linux-x64:
5454
name: integ / linux-x64
55-
needs: build-linux-x64
55+
needs: [build-linux-x64, build-jars]
5656
strategy:
5757
fail-fast: false
5858
matrix:
@@ -95,7 +95,7 @@ jobs:
9595

9696
integ-linux-arm64:
9797
name: integ / linux-arm64
98-
needs: build-linux-arm64
98+
needs: [build-linux-arm64, build-jars]
9999
strategy:
100100
fail-fast: false
101101
matrix:
@@ -115,7 +115,7 @@ jobs:
115115

116116
integ-macos:
117117
name: integ / macos
118-
needs: build-macos
118+
needs: [build-macos, build-jars]
119119
strategy:
120120
fail-fast: false
121121
matrix:
@@ -146,7 +146,7 @@ jobs:
146146
contents: write
147147
name: publish (nightly)
148148
runs-on: ubuntu-latest
149-
needs: [build-jars, integ-linux-x64, integ-linux-arm64, integ-macos]
149+
needs: [integ-linux-x64, integ-linux-arm64, integ-macos]
150150
steps:
151151
- name: Download async-profiler binaries and jars
152152
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)