You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
607 B
26 lines
607 B
language: rust |
|
jobs: |
|
include: |
|
# Stable channel. |
|
- os: linux |
|
rust: stable |
|
env: TARGET=x86_64-unknown-linux-gnu |
|
- os: linux |
|
rust: stable |
|
env: TARGET=i686-unknown-linux-gnu |
|
|
|
env: |
|
global: |
|
# Default target on travis-ci. |
|
# Used as conditional check in the install stage |
|
- HOST=x86_64-unknown-linux-gnu |
|
# Used on the deployment script |
|
- PROJECT_NAME=lowcharts |
|
|
|
install: |
|
# prevent target re-add error from rustup |
|
- if [[ $TRAVIS_OS_NAME = linux && $HOST != $TARGET ]]; then rustup target add $TARGET; fi |
|
|
|
notifications: |
|
email: |
|
on_success: never
|
|
|