File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -177,13 +177,15 @@ if [[ -n $do_checkout ]]; then
177
177
# the set of patches
178
178
(set -x; git tag $BASE_TAG )
179
179
180
- # Build buildah and the copy and inet helpers
180
+ # Build buildah and the copy, inet, and dumpspec test helpers
181
181
failhint=" error building buildah. This should never happen."
182
182
(set -x; make bin/buildah)
183
183
failhint=" error building buildah's copy helper. This should never happen."
184
184
(set -x; make bin/copy)
185
185
failhint=" error building buildah's inet helper. This should never happen."
186
186
(set -x; make bin/inet)
187
+ failhint=" error building buildah's dumpspec helper. This should never happen."
188
+ (set -x; make bin/dumpspec)
187
189
188
190
# The upcoming patch may fail. Before we try it, create a helper script
189
191
# for a developer to push a new set of diffs to podman-land.
@@ -262,5 +264,6 @@ review the test failure and double-check your changes.
262
264
BUILDAH_BINARY=$( pwd) /bin/buildah \
263
265
COPY_BINARY=$( pwd) /bin/copy \
264
266
INET_BINARY=$( pwd) /bin/inet \
267
+ DUMPSPEC_BINARY=$( pwd) /bin/dumpspec \
265
268
bats -j $( nproc) " ${bats_filter[@]} " tests/bud.bats)
266
269
fi
You can’t perform that action at this time.
0 commit comments