File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1414# ==============================================================================
1515# This file contains all the docker specifc envs that are needed by the
1616# ci/utilities/run_docker_container.sh script.
17-
1817source ci/default.env
1918os = $( uname -s | awk ' {print tolower($0) }')
2019arch = $( uname -m)
Original file line number Diff line number Diff line change 1313# See the License for the specific language governing permissions and
1414# limitations under the License.
1515# ==============================================================================
16- #
1716# Set up the Docker container and start it for JAX CI jobs.
17+ #
18+ # -e: abort script if one command fails
19+ # -u: error if undefined variable used
20+ # -x: log all commands
21+ # -o history: record shell history
22+ # -o allexport: export all functions and variables to be available to subscripts
23+ set -exu -o history -o allexport
24+
1825source ci/envs/docker_images.env
1926
2027# Keep the existing "jax" container if it's already present.
You can’t perform that action at this time.
0 commit comments