Skip to content

Commit 399b1c1

Browse files
berkowskiSusurrus
authored andcommitted
Updated .travis.yml
1 parent 129a9d8 commit 399b1c1

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.travis.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,19 @@ language: rust
66
services: docker
77
sudo: required
88

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
1010
# overridden on a case by case basis down below
1111
rust: stable
1212

1313
env:
1414
global:
15-
# TODO Update this to match the name of your project.
16-
- CRATE_NAME=trust
15+
- CRATE_NAME=nix
1716

1817
# default job
1918
- TARGET=x86_64-unknown-linux-gnu
2019

2120
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
2322
# don't need
2423
include:
2524
# Linux
@@ -44,12 +43,12 @@ matrix:
4443
- env: TARGET=armv7-unknown-linux-gnueabihf
4544
- env: TARGET=mips-unknown-linux-gnu
4645
- 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
4948
- env: TARGET=powerpc-unknown-linux-gnu
5049
- 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
5352

5453
# Testing other channels
5554
- env: TARGET=x86_64-unknown-linux-gnu
@@ -74,15 +73,17 @@ deploy:
7473
# - Encrypt it: `travis encrypt GH_TOKEN=0123456789012345678901234567890123456789`
7574
# - Paste the output down here
7675
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=
7877
file_glob: true
7978
file: $CRATE_NAME-$TRAVIS_TAG-$TARGET.*
8079
on:
81-
# TODO Here you can pick which targets will generate binary releases
80+
# Here you can pick which targets will generate binary releases
8281
# In this example, there are some targets that are tested using the stable
8382
# and nightly channels. This condition makes sure there is only one release
8483
# 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
8687
tags: true
8788
provider: releases
8889
skip_cleanup: true

0 commit comments

Comments
 (0)