We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ce72cc commit c85ece6Copy full SHA for c85ece6
.travis.yml
@@ -114,6 +114,7 @@ before_cache:
114
# Travis can't cache files that are not readable by "others"
115
- chmod -R a+r $HOME/.cache/pip
116
- chmod -R a+r $HOME/.cache/pyenv
117
+ - chmod -R a+r $HOME/.cargo
118
119
cache:
120
# There is a "cache: cargo" option but it's fails if target/ isn't in the build dir
ci/script.sh
@@ -2,8 +2,10 @@
2
3
set -ex
4
5
-# TODO This is the "test phase", tweak it as you see fit
6
main() {
+ # move into rust project subdir
7
+ cd trust_pypi_example/rust/
8
+
9
cross build --target $TARGET
10
cross build --target $TARGET --release
11
0 commit comments