Skip to content

Commit 95651f6

Browse files
author
Jorge Aparicio
committed
disable tests for ppc64le, drop logic around QEMU_ARCH
1 parent 9bee966 commit 95651f6

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

ci/env.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@ case $TARGET in
4646
;;
4747
powerpc64le-unknown-linux-gnu)
4848
export PREFIX=powerpc64le-linux-gnu-
49-
export QEMU_ARCH=i386
5049
export QEMU_LD_PREFIX=/usr/powerpc64le-linux-gnu
50+
# QEMU crashes, even running the simplest cross compiled C program:
51+
# `int main() { return 0; }`
52+
export RUN_TESTS=n
5153
;;
5254
thumbv*-none-eabi)
5355
export CARGO=xargo

ci/install.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,7 @@ set -ex
33
. $(dirname $0)/env.sh
44

55
install_qemu() {
6-
case ${QEMU_ARCH:-$TRAVIS_OS_NAME} in
7-
i386)
8-
dpkg --add-architecture $QEMU_ARCH
9-
apt-get update
10-
apt-get install -y --no-install-recommends \
11-
binfmt-support qemu-user-static:$QEMU_ARCH
12-
;;
6+
case $TRAVIS_OS_NAME in
137
linux)
148
apt-get update
159
apt-get install -y --no-install-recommends \

0 commit comments

Comments
 (0)