-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
45 lines (45 loc) · 990 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
sudo: false
language: ruby
rvm:
- 2.4.5
- 2.5.5
- 2.6.2
before_install:
- if [ ! -e "$HOME/.cargo/bin" ]; then curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y; fi
- export PATH="$HOME/.cargo/bin:$PATH"
- rustup default stable
- rustc --version
install:
- bundle install --path vendor/bundle
- bundle exec rake helix:copy_dll build
after_success:
- ruby ./bin/ci-publish $TRAVIS_TAG
matrix:
include:
- os: linux
rvm: 2.3.8
env:
- GEM_PUBLISH=true
- os: linux
rvm: 2.3.8
env:
- NATIVE_BUNDLE=true
- GEM_PUBLISH=true
- os: osx
osx_image: xcode9.2
rvm: 2.3.8
env:
- NATIVE_BUNDLE=true
- GEM_PUBLISH=true
- os: osx
osx_image: xcode10.1
rvm: 2.3.8
env:
- NATIVE_BUNDLE=true
- GEM_PUBLISH=true
- os: osx
osx_image: xcode10.2
rvm: 2.3.8
env:
- NATIVE_BUNDLE=true
- GEM_PUBLISH=true