|
33 | 33 | build-target: linux64 |
34 | 34 | container-path: ${{ needs.container.outputs.path }} |
35 | 35 |
|
| 36 | + depends-linux64_multiprocess: |
| 37 | + name: x86_64-pc-linux-gnu_multiprocess |
| 38 | + uses: ./.github/workflows/build-depends.yml |
| 39 | + needs: [container] |
| 40 | + with: |
| 41 | + build-target: linux64_multiprocess |
| 42 | + container-path: ${{ needs.container.outputs.path }} |
| 43 | + |
| 44 | + depends-linux64_nowallet: |
| 45 | + name: x86_64-pc-linux-gnu_nowallet |
| 46 | + uses: ./.github/workflows/build-depends.yml |
| 47 | + needs: [container] |
| 48 | + with: |
| 49 | + build-target: linux64_nowallet |
| 50 | + container-path: ${{ needs.container.outputs.path }} |
| 51 | + |
36 | 52 | depends-win64: |
37 | 53 | name: x86_64-w64-mingw32 |
38 | 54 | uses: ./.github/workflows/build-depends.yml |
@@ -77,14 +93,23 @@ jobs: |
77 | 93 | container-path: ${{ needs.container.outputs.path }} |
78 | 94 | depends-key: ${{ needs.depends-linux64.outputs.key }} |
79 | 95 |
|
| 96 | + src-linux64_multiprocess: |
| 97 | + name: linux64_multiprocess-build |
| 98 | + uses: ./.github/workflows/build-src.yml |
| 99 | + needs: [container, depends-linux64_multiprocess] |
| 100 | + with: |
| 101 | + build-target: linux64_multiprocess |
| 102 | + container-path: ${{ needs.container.outputs.path }} |
| 103 | + depends-key: ${{ needs.depends-linux64_multiprocess.outputs.key }} |
| 104 | + |
80 | 105 | src-linux64_nowallet: |
81 | 106 | name: linux64_nowallet-build |
82 | 107 | uses: ./.github/workflows/build-src.yml |
83 | | - needs: [container, depends-linux64] |
| 108 | + needs: [container, depends-linux64_nowallet] |
84 | 109 | with: |
85 | 110 | build-target: linux64_nowallet |
86 | 111 | container-path: ${{ needs.container.outputs.path }} |
87 | | - depends-key: ${{ needs.depends-linux64.outputs.key }} |
| 112 | + depends-key: ${{ needs.depends-linux64_nowallet.outputs.key }} |
88 | 113 |
|
89 | 114 | src-linux64_sqlite: |
90 | 115 | name: linux64_sqlite-build |
|
0 commit comments