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