-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
28 lines (28 loc) · 1.1 KB
/
.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
language: node_js
node_js:
- 10
install:
- cd ../../
- git clone --branch=$TRAVIS_BRANCH https://github.com/tangle-frost/iota-core.git tangle-frost/iota-core
- cd tangle-frost/iota-core
- npm link
- cd ../../
- git clone --branch=$TRAVIS_BRANCH https://github.com/tangle-frost/iota-qr-core.git tangle-frost/iota-qr-core
- cd tangle-frost/iota-qr-core
- npm link @tangle-frost/iota-core
- npm link
- cd ../../
- git clone --branch=$TRAVIS_BRANCH https://github.com/tangle-frost/iota-qr-render.git tangle-frost/iota-qr-render
- cd tangle-frost/iota-qr-render
- npm link @tangle-frost/iota-core @tangle-frost/iota-qr-core
- npm link
- cd ../../
- git clone --branch=$TRAVIS_BRANCH https://github.com/tangle-frost/iota-qr-data.git tangle-frost/iota-qr-data
- cd tangle-frost/iota-qr-data
- npm link @tangle-frost/iota-core @tangle-frost/iota-qr-core @tangle-frost/iota-qr-render
- npm link
- cd ../iota-qr-lib
- npm link @tangle-frost/iota-core @tangle-frost/iota-qr-core @tangle-frost/iota-qr-render @tangle-frost/iota-qr-data
- npm install
script:
- npm run dist || travis_terminate 1