forked from ly-web/appweb7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
farm.json
31 lines (31 loc) · 861 Bytes
/
farm.json
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
{
platforms: ['linux-x64'],
steps: ['prep', 'download', 'configure', 'build', 'package', 'test'],
options: ['publish'],
commands: {
clean: 'me clean',
configure: './configure --profile ${profile}',
build: 'me build',
test: 'me test',
package: 'me package',
publish: 'me publish',
},
config: {
publish: {
type: 'aws',
region: 'us-east-1',
endpoint: 's3.amazonaws.com',
publicBucket: 'embedthis.software',
codename: '${channel}',
component: 'embedthis',
bucket: 'embedthis.apt',
sign: 'B3C7BC73',
keys: ['aws-embedthis-ops', 'gpg'],
profiles: {
prod: {
primary: true,
},
}
},
},
}