File tree 6 files changed +40
-12
lines changed
6 files changed +40
-12
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,12 @@ matrix:
21
21
allow_failures :
22
22
- rust : nightly
23
23
include :
24
- - sudo : required
25
- os : linux
24
+ - os : linux
26
25
rust : nightly-2016-04-10
27
26
env : BUILD_ENV=-arm_cross_compile
27
+ - os : linux
28
+ rust : nightly
29
+ env : BUILD_ENV=-cargo_update
28
30
29
31
addons :
30
32
firefox : latest
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- set -e
3
+ set -ev
4
4
5
5
BUILD_TARGET=' arm-linux-gnueabihf'
6
6
RUST_TARGET=' armv7-unknown-linux-gnueabihf'
Original file line number Diff line number Diff line change
1
+ # /bin/bash
2
+
3
+ set -ev
4
+
5
+ CURRENT_PATH=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
6
+ source " $CURRENT_PATH /travis-linux-common.sh"
7
+
8
+
9
+ build () {
10
+ echo " build: updating Cargo.lock to the most recent version"
11
+ cargo update
12
+ cargo build
13
+ }
14
+
15
+ lint () {
16
+ echo " lint: nothing to do. Skipping..."
17
+ }
18
+
19
+ set_up_tests () {
20
+ echo " set_up_tests: nothing to do. Skipping..."
21
+ }
22
+
23
+ run_tests () {
24
+ echo " run_tests: nothing to do. Skipping..."
25
+ }
Original file line number Diff line number Diff line change
1
+ install_dependencies () {
2
+ # Missing dependencies only. The regular ones are in done with the APT addon
3
+ # defined in .travis.yml
4
+ sudo apt-get -qq update
5
+ # TODO: Move to apt addon once https://github.com/travis-ci/apt-package-whitelist/issues/1983 lands
6
+ sudo apt-get install -y avahi-daemon libavahi-client-dev libavahi-common-dev libdbus-1-dev
7
+ }
Original file line number Diff line number Diff line change 1
1
# /bin/bash
2
2
3
- set -e
3
+ set -ev
4
4
5
5
CURRENT_PATH=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
6
+ source " $CURRENT_PATH /travis-linux-common.sh"
6
7
7
- install_dependencies () {
8
- # Missing dependencies only. The regular ones are in done with the APT addon
9
- # defined in .travis.yml
10
- sudo apt-get -qq update
11
- # TODO: Move to apt addon once https://github.com/travis-ci/apt-package-whitelist/issues/1983 lands
12
- sudo apt-get install -y avahi-daemon libavahi-client-dev libavahi-common-dev libdbus-1-dev
13
- }
14
8
15
9
build () {
16
10
cargo build
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- set -e
3
+ set -ev
4
4
5
5
CURRENT_PATH=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
6
6
You can’t perform that action at this time.
0 commit comments