Skip to content
This repository was archived by the owner on Oct 6, 2020. It is now read-only.

Commit 191fff7

Browse files
author
Marius Seritan
committed
Attempt to fix build
1 parent 2061da8 commit 191fff7

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.travis.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,7 @@ before_script:
2222
pip install 'travis-cargo<0.2' --user &&
2323
export PATH=$HOME/.local/bin:$PATH
2424
# the main build
25-
script:
26-
- |
27-
travis-cargo build &&
28-
travis-cargo test &&
29-
travis-cargo bench &&
30-
travis-cargo --only stable doc
25+
script: ./scripts/build.sh
3126
after_success:
3227
# upload the documentation from the build with stable (automatically only actually
3328
# runs on the master branch, not individual PRs)

scripts/build.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
set -ev
4+
5+
for i in azure_sdk* ; do
6+
cd $i
7+
travis-cargo build
8+
travis-cargo test
9+
travis-cargo bench
10+
travis-cargo --only stable doc
11+
cd ..
12+
done
13+
14+

0 commit comments

Comments
 (0)