@@ -6,20 +6,19 @@ language: rust
6
6
services : docker
7
7
sudo : required
8
8
9
- # TODO This is the Rust channel that build jobs will use by default but can be
9
+ # This is the Rust channel that build jobs will use by default but can be
10
10
# overridden on a case by case basis down below
11
11
rust : stable
12
12
13
13
env :
14
14
global :
15
- # TODO Update this to match the name of your project.
16
- - CRATE_NAME=trust
15
+ - CRATE_NAME=nix
17
16
18
17
# default job
19
18
- TARGET=x86_64-unknown-linux-gnu
20
19
21
20
matrix :
22
- # TODO These are all the build jobs. Adjust as necessary. Comment out what you
21
+ # These are all the build jobs. Adjust as necessary. Comment out what you
23
22
# don't need
24
23
include :
25
24
# Linux
@@ -44,12 +43,12 @@ matrix:
44
43
- env : TARGET=armv7-unknown-linux-gnueabihf
45
44
- env : TARGET=mips-unknown-linux-gnu
46
45
- env : TARGET=mips64-unknown-linux-gnuabi64
47
- - env : TARGET=mips64el-unknown-linux-gnuabi64
48
- - env : TARGET=mipsel-unknown-linux-gnu
46
+ # - env: TARGET=mips64el-unknown-linux-gnuabi64
47
+ # - env: TARGET=mipsel-unknown-linux-gnu
49
48
- env : TARGET=powerpc-unknown-linux-gnu
50
49
- env : TARGET=powerpc64-unknown-linux-gnu
51
- - env : TARGET=powerpc64le-unknown-linux-gnu
52
- - env : TARGET=s390x-unknown-linux-gnu DISABLE_TESTS=1
50
+ # - env: TARGET=powerpc64le-unknown-linux-gnu
51
+ # - env: TARGET=s390x-unknown-linux-gnu DISABLE_TESTS=1
53
52
54
53
# Testing other channels
55
54
- env : TARGET=x86_64-unknown-linux-gnu
@@ -74,15 +73,17 @@ deploy:
74
73
# - Encrypt it: `travis encrypt GH_TOKEN=0123456789012345678901234567890123456789`
75
74
# - Paste the output down here
76
75
api_key :
77
- secure : A9v3PIzQQ4U08OHFmDPQzNXbNHEb7YHyLXCvMF+dXFuNSvhUNlmQYykxqUf3dvikhJL2/bsZ14umm7ni7fQh0tGwJ4+lPpNzYAcweGgNXnWvjTpY6ovuRbr3gs4/srkyxp/GBDmSW5L8wFN3hKCB+Lm0YnIPB9IA2afP8a30+8VTXT9nv7pNqGny4ilN41ycr4DZi3sQoXdbruy7ClN7gsWW/GUiudBccHVIjmTapOFKLwZHODaUl/1/RDWQzh+i+17e1ivXuJPktDSrqmHPTZ15OjklnHKd6t179ry6VkGRg4R/R/YukVIqGzeaXGWAwdAQ5gE8cjGZghJLVi2jkDBJ85z8MvT+zLZLyliiuhLc/X8y7mkE1n0FKFtXXzFVt0l7V1LaEKbIbiV6XX3jsir4qgkqWjPHBZqO5mkGNFS16Dmt30/ZtEPAzXiINFXbWuWrpQ/LZ4NSto8IMrRTcoyDbAga/KYxJiNIeVuCe1E9dbytDM7K0GLtxJTul/WnnSeI6r//EFyC4bxYjyHhCXaag4q14KM+ak4rB0QgxsYzyGuh2MqyCoVj8YJLjLdKnL/SV7W7LPD40xlxvI6VCYTVi2ILHwL6vCxpukXYteX0c5IAIWkISDKu6nNBEgmCHXXPSqYSrgE5g7/QoCQHI8++nR8iKe0s7TWxZRydby8 =
76
+ secure : S1ktt0eqmfrEHnYPf4WO7mZtatz/FWfYWBp8nwdc0nd8H6UNZ9Dwy3tJpVe0N9rpB9vAFnkdw6R4jdkIcgxfory2F3F8k/mh8cWn0mkvh2N34YjHMYLnuVzOoFrWai7IcPfROpdlY0tGBlwNj5KMkeBnHUJzd2q4j/4j/tlrfmg =
78
77
file_glob : true
79
78
file : $CRATE_NAME-$TRAVIS_TAG-$TARGET.*
80
79
on :
81
- # TODO Here you can pick which targets will generate binary releases
80
+ # Here you can pick which targets will generate binary releases
82
81
# In this example, there are some targets that are tested using the stable
83
82
# and nightly channels. This condition makes sure there is only one release
84
83
# for such targets and that's generated using the stable channel
85
- condition : $TRAVIS_RUST_VERSION = stable
84
+ #
85
+ # Here we make it so we never generate binary releases
86
+ condition : $DEPLOY = never
86
87
tags : true
87
88
provider : releases
88
89
skip_cleanup : true
0 commit comments