ci: try running 32bit without cross

This commit is contained in:
dignifiedquire
2019-07-12 21:30:17 +02:00
parent 98fb79f172
commit b5f4c263e5

View File

@@ -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