Skip to content

Commit 68ddcdb

Browse files
committed
ci: add nowallet depends, multiprocess depends and build variant
1 parent c83efa8 commit 68ddcdb

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

.github/workflows/build.yml

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,22 @@ jobs:
3333
build-target: linux64
3434
container-path: ${{ needs.container.outputs.path }}
3535

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+
3652
depends-win64:
3753
name: x86_64-w64-mingw32
3854
uses: ./.github/workflows/build-depends.yml
@@ -77,14 +93,23 @@ jobs:
7793
container-path: ${{ needs.container.outputs.path }}
7894
depends-key: ${{ needs.depends-linux64.outputs.key }}
7995

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+
80105
src-linux64_nowallet:
81106
name: linux64_nowallet-build
82107
uses: ./.github/workflows/build-src.yml
83-
needs: [container, depends-linux64]
108+
needs: [container, depends-linux64_nowallet]
84109
with:
85110
build-target: linux64_nowallet
86111
container-path: ${{ needs.container.outputs.path }}
87-
depends-key: ${{ needs.depends-linux64.outputs.key }}
112+
depends-key: ${{ needs.depends-linux64_nowallet.outputs.key }}
88113

89114
src-linux64_sqlite:
90115
name: linux64_sqlite-build

0 commit comments

Comments
 (0)