46
46
steps :
47
47
- uses : actions/checkout@v3
48
48
- name : Build the server image
49
- run : make OS_NAME=${{ matrix.os}} BUILD_ARCH=${{ matrix.arch}} build-server
49
+ run : make KIND=server OS_NAME=${{ matrix.os}} BUILD_ARCH=${{ matrix.arch}} build-image
50
50
- name : Upload server image
51
51
52
52
with :
67
67
steps :
68
68
- uses : actions/checkout@v3
69
69
- name : Build the ad server image
70
- run : make OS_NAME=${{matrix.os}} BUILD_ARCH=${{matrix.arch}} build-ad-server
70
+ run : make KIND=ad-server OS_NAME=${{matrix.os}} BUILD_ARCH=${{matrix.arch}} build-image
71
71
- name : Upload ad server image
72
72
73
73
with :
86
86
steps :
87
87
- uses : actions/checkout@v3
88
88
- name : build the client image
89
- run : make OS_NAME=${{ matrix.os }} BUILD_ARCH=${{ matrix.arch }} build-client
89
+ run : make KIND=client OS_NAME=${{ matrix.os }} BUILD_ARCH=${{ matrix.arch }} build-image
90
90
# Here we upload samba-client image to artifacts locally for consumption
91
91
# during the samba-toolbox build process.
92
92
- name : Upload the client image
@@ -115,7 +115,7 @@ jobs:
115
115
image : " quay.io/samba.org/samba-client:${{ matrix.os }}-latest"
116
116
container_engine : ${{ env.CONTAINER_CMD }}
117
117
- name : Build the toolbox image
118
- run : make OS_NAME=${{ matrix.os }} BUILD_ARCH=${{ matrix.arch }} build-toolbox
118
+ run : make KIND=toolbox OS_NAME=${{ matrix.os }} BUILD_ARCH=${{ matrix.arch }} build-image
119
119
120
120
test-server :
121
121
strategy :
@@ -147,7 +147,7 @@ jobs:
147
147
steps :
148
148
- uses : actions/checkout@v3
149
149
- name : Build the nightly server image
150
- run : make OS_NAME=${{ matrix.os }} BUILD_ARCH=${{ matrix.arch }} build-nightly-server
150
+ run : make KIND=server PACKAGE_SOURCE=nightly OS_NAME=${{ matrix.os }} BUILD_ARCH=${{ matrix.arch }} build-image
151
151
- name : Upload nightly server image
152
152
153
153
with :
@@ -166,7 +166,7 @@ jobs:
166
166
steps :
167
167
- uses : actions/checkout@v3
168
168
- name : Build the nightly ad server image
169
- run : make OS_NAME=${{ matrix.os }} BUILD_ARCH=${{ matrix.arch }} build-nightly-ad-server
169
+ run : make KIND=ad-server PACKAGE_SOURCE=nightly OS_NAME=${{ matrix.os }} BUILD_ARCH=${{ matrix.arch }} build-image
170
170
- name : Upload nightly AD server image
171
171
172
172
with :
0 commit comments