-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.bitesize
More file actions
58 lines (58 loc) · 1.81 KB
/
Copy pathbuild.bitesize
File metadata and controls
58 lines (58 loc) · 1.81 KB
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
project: test-app
components:
- name: front
version: 1.0.1
os: linux
dependencies:
- type: gem-package
package: fpm
- type: debian-package
package: rlwrap
- type: debian-package
package: build-essential
- type: debian-package
package: libkrb5-dev
- type: debian-package
package: nodejs
version: 5.9.0-1nodesource1~trusty1
location: https://deb.nodesource.com/node_5.x/pool/main/n/nodejs/nodejs_5.9.0-1nodesource1~trusty1_amd64.deb
repository:
git: git@github.com:AndyMoore/test-app-v2.git
branch: master
build:
- shell: node --version
- shell: npm --version
- shell: "rm -f *.deb"
- shell: npm install front --prefix front
- shell: fpm -s dir -C front -t deb -n front -x "**/.git/**" -v 1.0.1-$(date "+%Y%m%d%H%M%S") --prefix /app .
- shell: ls -al
artifacts:
- location: "*.deb"
- name: back
version: 1.0.1
os: linux
dependencies:
- type: gem-package
package: fpm
- type: debian-package
package: rlwrap
- type: debian-package
package: build-essential
- type: debian-package
package: libkrb5-dev
- type: debian-package
package: nodejs
version: 5.9.0-1nodesource1~trusty1
location: https://deb.nodesource.com/node_5.x/pool/main/n/nodejs/nodejs_5.9.0-1nodesource1~trusty1_amd64.deb
repository:
git: git@github.com:AndyMoore/test-app-v2.git
branch: master
build:
- shell: node --version
- shell: npm --version
- shell: "rm -f *.deb"
- shell: npm install back --prefix back
- shell: fpm -s dir -C back -t deb -n back -x "**/.git/**" -v 1.0.1-$(date "+%Y%m%d%H%M%S") --prefix /app .
- shell: ls -al
artifacts:
- location: "*.deb"