Skip to content

Commit 2258dc5

Browse files
committed
no message
1 parent d98e6af commit 2258dc5

File tree

1 file changed

+31
-3
lines changed

1 file changed

+31
-3
lines changed

.travis.yml

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
1+
osx_image: xcode8.3
2+
sudo: required
3+
dist: trusty
4+
language: c
5+
6+
matrix:
7+
include:
8+
- os: osx
9+
- os: linux
10+
env: CC=clang CXX=clang++ npm_config_clang=1
11+
compiler: clang
12+
addons:
13+
apt:
14+
packages:
15+
- libgnome-keyring-dev
16+
- icnsutils
17+
before_install:
18+
- mkdir -p /tmp/git-lfs && curl -L https://github.com/github/git-lfs/releases/download/v1.2.1/git-lfs-$([
19+
"$TRAVIS_OS_NAME" == "linux" ] && echo "linux" || echo "darwin")-amd64-1.2.1.tar.gz
20+
| tar -xz -C /tmp/git-lfs --strip-components 1 && /tmp/git-lfs/git-lfs pull
21+
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils; fi
122
install:
2-
- yarn
23+
- nvm install 10
24+
- curl -o- -L https://yarnpkg.com/install.sh | bash
25+
- source ~/.bashrc
26+
- npm install -g xvfb-maybe
27+
- yarn
328
script:
4-
- yarn run build
5-
- npm run publish
29+
- yarn run build
30+
- yarn run publish
31+
branches:
32+
only:
33+
- master

0 commit comments

Comments
 (0)