File tree 3 files changed +7
-10
lines changed
3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 13
13
- CRATE_NAME=trust_pypi_example
14
14
# Rust release. E.g. Stable, nightly, nightly-2014-12-18
15
15
- RUSTRELEASE=stable
16
+ - SKIPCROSS=true
16
17
17
18
matrix :
18
19
include :
@@ -49,13 +50,13 @@ matrix:
49
50
# OSX
50
51
# See versions https://docs.travis-ci.com/user/osx-ci-environment/#OS-X-Version
51
52
# current default is osx_image: xcode7.3 OS X 10.11
52
- #
53
+ # xcode6.4 seems to segfault with rustup or cross
53
54
- env : TARGET=x86_64-apple-darwin PYENV=2.7.13 WHEELPLATFORM=macosx_10_11_x86_64
54
55
os : osx
55
56
osx_image : xcode7.3
56
- - env : TARGET=x86_64-apple-darwin PYENV=3.6.1 WHEELPLATFORM=macosx_10_10_x86_64
57
+ - env : TARGET=x86_64-apple-darwin PYENV=3.6.1 WHEELPLATFORM=macosx_10_12_x86_64
57
58
os : osx
58
- osx_image : xcode6.4
59
+ osx_image : xcode8.1
59
60
# - env: TARGET=i686-apple-darwin PYENV=2.7.13 WHEELPLATFORM=
60
61
# os: osx
61
62
# - env: TARGET=i686-apple-darwin PYENV=3.6.1 WHEELPLATFORM=
Original file line number Diff line number Diff line change 7
7
fi
8
8
if [ ! -z ${SKIPCROSS+x} ]; then
9
9
# This is for local testing. It skips the install.
10
- echo " SKIPCROSS is set. This must be a local test "
10
+ echo " SKIPCROSS is set."
11
11
return
12
12
fi
13
13
local target=
@@ -34,4 +34,6 @@ main() {
34
34
--target $target
35
35
}
36
36
37
+
38
+ # Skipping this for now.
37
39
# main
Original file line number Diff line number Diff line change @@ -33,19 +33,13 @@ pyenv_build_test_bundle() {
33
33
34
34
pushd trust_pypi_example/rust/
35
35
cargo build --target $TARGET --release
36
- # pushd trust_pypi_example/rust/
37
- # cross build --target $TARGET --release
38
36
39
37
# disable tests
40
38
if [ ! -z $DISABLE_TESTS ]; then
41
39
echo " Rust Tests Disabled"
42
40
else
43
41
cargo test --target $TARGET --release
44
- # cross test --target $TARGET --release
45
42
fi
46
- # uncomment if creating a bin
47
- # cross run --target $TARGET
48
- # cross run --target $TARGET --release
49
43
50
44
# hack
51
45
# move target/$TARGET/release to target/release to make
You can’t perform that action at this time.
0 commit comments