forked from bitrise-io/ionic-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbitrise-dev.yml
More file actions
46 lines (44 loc) · 1.33 KB
/
bitrise-dev.yml
File metadata and controls
46 lines (44 loc) · 1.33 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
format_version: 1.3.1
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
app:
envs:
- GIT_REPOSITORY_URL: https://github.com/bitrise-samples/ionic-2.git
- BITRISE_GIT_BRANCH: master
workflows:
docker-compose-run-ci:
steps:
- script:
inputs:
- content: |-
#!/bin/bash
set -ex
docker-compose -f docker-compose-ci.yml build
docker-compose -f docker-compose-ci.yml run \
--rm --service-ports \
-e GIT_REPOSITORY_URL="$GIT_REPOSITORY_URL" -e BITRISE_GIT_BRANCH="$BITRISE_GIT_BRANCH" \
app bitrise run --config /bitrise/tmp/bitrise.yml ci
opts: {}
docker-compose-ci-console:
steps:
- script:
inputs:
- content: |-
#!/bin/bash
set -ex
docker-compose -f docker-compose-ci.yml build
docker-compose -f docker-compose-ci.yml run \
--rm --service-ports \
app bash
opts: {}
docker-compose-dev-console:
steps:
- script:
inputs:
- content: |-
#!/bin/bash
set -ex
docker-compose -f docker-compose-dev.yml build
docker-compose -f docker-compose-dev.yml run \
--rm --service-ports \
app bash
opts: {}