1#!/usr/bin/env bash 2 3set -e 4 5arch=s390x 6 7# Ephemeral packages (installed for this script and removed again at the end) 8EPHEMERAL=( 9 libssl-dev 10) 11 12apt-get -y install "${EPHEMERAL[@]}" 13 14. .gitlab-ci/container/build-mold.sh 15 16apt-get purge -y "${EPHEMERAL[@]}" 17 18. .gitlab-ci/container/cross_build.sh 19