2018-12-24 16:04:54 +01:00
|
|
|
#!/bin/bash -eu
|
|
|
|
|
|
|
|
# all-in-docker.sh
|
|
|
|
#
|
|
|
|
# Purpose
|
|
|
|
# -------
|
|
|
|
# This runs all.sh (except for armcc) in a Docker container.
|
|
|
|
#
|
2022-12-15 10:08:26 +01:00
|
|
|
# WARNING: the Dockerfile used by this script is no longer maintained! See
|
|
|
|
# https://github.com/Mbed-TLS/mbedtls-test/blob/master/README.md#quick-start
|
|
|
|
# for the set of Docker images we use on the CI.
|
|
|
|
#
|
2018-12-24 16:04:54 +01:00
|
|
|
# Notes for users
|
|
|
|
# ---------------
|
|
|
|
# See docker_env.sh for prerequisites and other information.
|
|
|
|
#
|
|
|
|
# See also all.sh for notes about invocation of that script.
|
|
|
|
|
2020-08-07 13:07:28 +02:00
|
|
|
# Copyright The Mbed TLS Contributors
|
2023-11-02 20:47:20 +01:00
|
|
|
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2019-05-31 13:38:06 +02:00
|
|
|
|
2018-12-24 16:04:54 +01:00
|
|
|
source tests/scripts/docker_env.sh
|
|
|
|
|
|
|
|
# Run tests that are possible with openly available compilers
|
|
|
|
run_in_docker tests/scripts/all.sh \
|
|
|
|
--no-armcc \
|
|
|
|
$@
|