Sha256: 9b48fd00fcfa2555f2730893515aa6079b0acd3597d1892a1e1d5f2a36916a60

Contents?: true

Size: 579 Bytes

Versions: 2

Compression:

Stored size: 579 Bytes

Contents

sudo: false
language: ruby
rvm:
  - 2.4.0
cache:
  directories:
    - $HOME/.rvm/gems
    - $HOME/.cargo
    - $HOME/.multirust

env:
  global:
    - RUST_VERSION=stable

git:
  depth: 10
  submodules: false

before_install:
  - sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
  - git submodule update --init --recursive
  # Install Rust
  - if [ ! -e "$HOME/.cargo/bin" ]; then curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain $RUST_VERSION -y; fi
  - export PATH="$HOME/.cargo/bin:$PATH"
  - rustup default $RUST_VERSION

script:
  - script/cibuild

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
graphql-idl-parser-0.1.0 .travis.yml
graphql-idl-parser-0.0.1 .travis.yml