File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- # This file may be sourced from a test script written in Bash or BATS. It
1+ # This file may be sourced from a test script written in Bash or BATS. It
22# contains a number of utility functions, most of which have to do with:
33#
44# 1. implementing common tasks, often setup or configuration wrt iRODS; or
Original file line number Diff line number Diff line change 1919
2020: ${PYTHON_VERSION:= 3.13} export PYTHON_VERSION
2121
22- for dockerfile in " ${ARGS[@]} " ; do
22+ for dockerfile in " ${ARGS[@]} " ; do
2323 image_name=${dockerfile# [0-9]* _}
2424 image_name=${image_name% .Dockerfile}
2525 irods_package_version_option=" "
@@ -34,6 +34,6 @@ for dockerfile in "${ARGS[@]}"; do
3434 python_version_option=${PYTHON_VERSION: +" --build-arg=python_version=$PYTHON_VERSION " }
3535 fi
3636 $DOCKER build -f $dockerfile -t $image_name . $irods_package_version_option $python_version_option \
37- ${NO_CACHE+" --no-cache" } ||
37+ ${NO_CACHE+" --no-cache" } || \
3838 { STATUS=$? ; echo " *** Failure while building [$image_name ]" ; exit $STATUS ; }
3939done
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- # Runs a test program within a new container. The container is dispatched and/or disposed of, and the exit
3+ # Runs a test program within a new container. The container is dispatched and/or disposed of, and the exit
44# status code of the target test program collected and returned, by this script.
55
66# The repository containing this harness directory is mapped to a direct subdirectory of / within the container.
You can’t perform that action at this time.
0 commit comments