1#!/bin/bash -eu 2 3# all-in-docker.sh 4# 5# Purpose 6# ------- 7# This runs all.sh (except for armcc) in a Docker container. 8# 9# WARNING: the Dockerfile used by this script is no longer maintained! See 10# https://github.com/Mbed-TLS/mbedtls-test/blob/master/README.md#quick-start 11# for the set of Docker images we use on the CI. 12# 13# Notes for users 14# --------------- 15# See docker_env.sh for prerequisites and other information. 16# 17# See also all.sh for notes about invocation of that script. 18 19# Copyright The Mbed TLS Contributors 20# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 21 22source tests/scripts/docker_env.sh 23 24# Run tests that are possible with openly available compilers 25run_in_docker tests/scripts/all.sh \ 26 --no-armcc \ 27 $@ 28