Skip to content

Commit 9e79639

Browse files
committed
Attempt to fix the iOS and linux builds
1 parent 3ca7bcc commit 9e79639

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

.travis.yml

+11-12
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@ addons:
99
- cmake
1010
install: >
1111
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
12-
set -eu
13-
git clone -b 1.9 https://github.com/gnustep/libobjc2.git
14-
mkdir libobjc2/build
15-
cd libobjc2/build
16-
export CC="clang"
17-
export CXX="clang++"
18-
cmake -DCMAKE_INSTALL_PREFIX:PATH=$HOME/libobjc2_staging ../
12+
git clone -b 1.9 https://github.com/gnustep/libobjc2.git &&
13+
mkdir libobjc2/build &&
14+
cd libobjc2/build &&
15+
export CC="clang" &&
16+
export CXX="clang++" &&
17+
cmake -DCMAKE_INSTALL_PREFIX:PATH=$HOME/libobjc2_staging ../ &&
1918
make install
2019
fi
2120
before_script: >
@@ -56,11 +55,11 @@ jobs:
5655
osx_image: xcode7.3
5756
rust: 1.41.0
5857
before_install: >
59-
rustup target add \
60-
i386-apple-ios \
61-
x86_64-apple-ios \
62-
armv7-apple-ios \
63-
armv7s-apple-ios \
58+
rustup target add
59+
i386-apple-ios
60+
x86_64-apple-ios
61+
armv7-apple-ios
62+
armv7s-apple-ios
6463
aarch64-apple-ios
6564
install: curl -LO https://github.com/SSheldon/rust-test-ios/releases/download/0.1.1/rust-test-ios && chmod +x rust-test-ios
6665
env: FEATURES="exception"

0 commit comments

Comments
 (0)