Skip to content

Commit

Permalink
WIP: build all jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzlbg committed May 14, 2019
1 parent 18bf94c commit a4abe8b
Showing 1 changed file with 25 additions and 29 deletions.
54 changes: 25 additions & 29 deletions .travis.yml
Expand Up @@ -4,10 +4,6 @@ sudo: required
dist: xenial
services: docker

stages:
- tools-and-build-and-tier1
- tier2

matrix:
include:
# TOOLS
Expand All @@ -17,13 +13,13 @@ matrix:
install:
- travis_retry rustup component add rust-src
- travis_retry cargo install xargo
stage: tools-and-build-and-tier1
stage: tier2
- name: "Shellcheck"
install: true
script:
- shellcheck --version
- shellcheck ci/*.sh
stage: tools-and-build-and-tier1
stage: tier2
- name: "Style"
install: true
script:
Expand All @@ -33,130 +29,130 @@ matrix:
# if rustup component add rustfmt-preview ; then
# cargo fmt --all -- --check
# fi
stage: tools-and-build-and-tier1
stage: tier2
- name: "Semver Linux"
install: travis_retry cargo +nightly install semverver
script: sh ci/semver.sh
stage: tools-and-build-and-tier1
stage: tier2
- name: "Semver MacOSX"
install: travis_retry cargo +nightly install semverver
script: sh ci/semver.sh
os: osx
osx_image: xcode10
stage: tools-and-build-and-tier1
stage: tier2

# BUILD stable, beta, nightly
- name: "Build Stable Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: stable
install: true
- name: "Build Beta Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: beta
install: true
- name: "Build Nightly Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: nightly
install:
- travis_retry rustup component add rust-src
- travis_retry cargo install xargo
- name: "Build Stable Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: stable
os: osx
osx_image: xcode10
install: true
- name: "Build Beta Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: beta
os: osx
osx_image: xcode10
install: true
- name: "Build Nightly Rust"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: nightly
os: osx
osx_image: xcode10
install: true
- name: "Build Stable Rust 1.13.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: 1.13.0
install: true
- name: "Build Stable Rust 1.19.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: 1.19.0
install: true
- name: "Build Stable Rust 1.24.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: 1.24.0
install: true
- name: "Build Stable Rust 1.25.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: 1.25.0
install: true
- name: "Build Stable Rust 1.30.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: 1.30.0
install: true
- name: "Build Stable Rust 1.13.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: 1.13.0
os: osx
osx_image: xcode10
install: true
- name: "Build Stable Rust 1.19.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: 1.19.0
os: osx
osx_image: xcode10
install: true
- name: "Build Stable Rust 1.24.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: 1.24.0
os: osx
osx_image: xcode10
install: true
- name: "Build Stable Rust 1.25.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: 1.25.0
os: osx
osx_image: xcode10
install: true
- name: "Build Stable Rust 1.30.0"
script: sh ci/build.sh
stage: tools-and-build-and-tier1
stage: tier2
rust: 1.30.0
os: osx
osx_image: xcode10
install: true
- env: TARGET=i686-apple-darwin
os: osx
osx_image: xcode10
stage: tools-and-build-and-tier1
stage: tier2
- env: TARGET=i686-unknown-linux-gnu
stage: tools-and-build-and-tier1
stage: tier2
- env: TARGET=x86_64-apple-darwin
os: osx
osx_image: xcode10
install: true
stage: tools-and-build-and-tier1
stage: tier2
- env: TARGET=x86_64-unknown-linux-gnu
stage: tools-and-build-and-tier1
stage: tier2
install: true

# Tier 2 targets
Expand Down

0 comments on commit a4abe8b

Please sign in to comment.