From b5f4c263e5f5943844a60c5583551bd0408c6868 Mon Sep 17 00:00:00 2001 From: dignifiedquire Date: Fri, 12 Jul 2019 21:30:17 +0200 Subject: [PATCH] ci: try running 32bit without cross --- ci/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run.sh b/ci/run.sh index 1a770dbfe..c5464cf2e 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -12,7 +12,7 @@ export OPT_FFI_RELEASE="--manifest-path=deltachat-ffi/Cargo.toml --release" export CARGO_CMD=cross # On Appveyor (windows) and Travis (x86_64-unknown-linux-gnu and apple) native targets we use cargo (no need to cross-compile): -if [[ $TARGET = *"windows"* ]] || [[ $TARGET == "x86_64-unknown-linux-gnu" ]] || [[ $TARGET = *"apple"* ]]; then +if [[ $TARGET = *"windows"* ]] || [[ $TARGET == "x86_64-unknown-linux-gnu" ]] || [[ $TARGET = *"apple"* ]] || [[ $TARGET == "i686-unknown-linux-gnu" ]]; then export CARGO_CMD=cargo fi