Skip to content

Commit 26240d2

Browse files
committed
Start toward testing s390x via cross
1 parent 1612c73 commit 26240d2

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Cross.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[target.s390x-unknown-linux-gnu]
2+
image = "cross-rs-gitoxide/s390x-unknown-linux-gnu"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM ghcr.io/cross-rs/s390x-unknown-linux-gnu:latest
2+
3+
RUN apt-get update && \
4+
apt-get install apt-transport-https && \
5+
echo 'deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu xenial main' > \
6+
/etc/apt/sources.list.d/git-core-ubuntu-ppa-xenial.list && \
7+
apt-key adv --keyserver keyserver.ubuntu.com \
8+
--recv-keys F911AB184317630C59970973E363C90F8F1B6217 && \
9+
apt-get update && \
10+
apt-get install --no-install-recommends -y git && \
11+
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)