-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
73 lines (73 loc) · 2.9 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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 ../../
- git clone --branch=$TRAVIS_BRANCH https://github.com/tangle-frost/iota-qr-lib.git tangle-frost/iota-qr-lib
- cd tangle-frost/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 link
- cd ../iota-qr-tutorials/using-library/browser/data
- npm link @tangle-frost/iota-qr-lib
- npm install
- cd ../../../using-library/browser/render-types
- npm link @tangle-frost/iota-qr-lib
- npm install
- cd ../../../using-library/node-js/data
- npm link @tangle-frost/iota-qr-lib
- npm install
- cd ../../../using-library/node-js/render-types
- npm link @tangle-frost/iota-qr-lib
- npm install
- cd ../../../using-modules/browser/data
- npm link @tangle-frost/iota-core @tangle-frost/iota-qr-core @tangle-frost/iota-qr-render @tangle-frost/iota-qr-data
- npm install
- cd ../../../using-modules/browser/render-types
- npm link @tangle-frost/iota-core @tangle-frost/iota-qr-core @tangle-frost/iota-qr-render @tangle-frost/iota-qr-data
- npm install
- cd ../../../using-modules/node-js/data
- npm link @tangle-frost/iota-core @tangle-frost/iota-qr-core @tangle-frost/iota-qr-render @tangle-frost/iota-qr-data
- npm install
- cd ../../../using-modules/node-js/render-types
- npm link @tangle-frost/iota-core @tangle-frost/iota-qr-core @tangle-frost/iota-qr-render @tangle-frost/iota-qr-data
- npm install
script:
- cd ../../../using-library/browser/data
- npm run build
- cd ../../../using-library/browser/render-types
- npm run build
- cd ../../../using-library/node-js/data
- npm run build
- npm run start
- cd ../../../using-library/node-js/render-types
- npm run build
- npm run start
- cd ../../../using-modules/browser/data
- npm run build
- cd ../../../using-modules/browser/render-types
- npm run build
- cd ../../../using-modules/node-js/data
- npm run build
- npm run start
- cd ../../../using-modules/node-js/render-types
- npm run build
- npm run start