blob: b2a31c265e1d0d5034e27ee3b3512f1673bca4d1 [file] [log] [blame]
Peter Kolbuse4e2d3a2018-12-24 09:04:54 -06001#!/bin/bash -eu
2
3# all-in-docker.sh
4#
Peter Kolbuse4e2d3a2018-12-24 09:04:54 -06005# Purpose
6# -------
7# This runs all.sh (except for armcc) in a Docker container.
8#
Manuel Pégourié-Gonnard59626b62022-12-15 10:08:26 +01009# 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#
Peter Kolbuse4e2d3a2018-12-24 09:04:54 -060013# 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
Bence Szépkúti1e148272020-08-07 13:07:28 +020019# Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +000020# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Peter Kolbus4225b1a2019-05-31 06:38:06 -050021
Peter Kolbuse4e2d3a2018-12-24 09:04:54 -060022source 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 $@