Skip to content

Commit 3141bab

Browse files
author
Jorge Aparicio
authored
Merge pull request #23 from japaric/mips
mips: run test on 32-bit QEMU
2 parents 5a1eee9 + 67ed0e4 commit 3141bab

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

ci/env.sh

-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ case $TARGET in
3737
fi
3838
;;
3939
mips-unknown-linux-gnu)
40-
# See #2
41-
export DONT_RUN_TESTS=y
4240
if [[ -z $DOCKER ]]; then
4341
export DOCKER=y
4442
fi

ci/install.sh

+6-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,18 @@ install_deps() {
1212

1313
install_qemu() {
1414
case $TARGET in
15-
mips-unknown-linux-gnu | \
1615
mipsel-unknown-linux-gnu | \
1716
powerpc64-unknown-linux-gnu | \
1817
powerpc64le-unknown-linux-gnu)
1918
apt-get install -y --no-install-recommends \
2019
qemu-user
2120
;;
21+
mips-unknown-linux-gnu)
22+
dpkg --add-architecture i386
23+
apt-get update
24+
apt-get install -y --no-install-recommends \
25+
qemu-user:i386
26+
;;
2227
esac
2328
}
2429

@@ -58,8 +63,6 @@ install_c_toolchain() {
5863
apt-get install -y --no-install-recommends \
5964
gcc-powerpc64le-linux-gnu libc6-dev-ppc64el-cross
6065
;;
61-
*)
62-
;;
6366
esac
6467
}
6568

0 commit comments

Comments
 (0)