forked from vladonemo/docker-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (64 loc) · 1.66 KB
/
boot-syntax-check-tests.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
74
name: Boot & Syntax check & Tests
on:
- push
jobs:
boot_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dev-mode: [
DEV_MODE=0,
DEV_MODE=1
]
name: Boot test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Boot
run: |
export ${{ matrix.dev-mode }}
chmod +x sdk
if [[ $DEV_MODE == 0 ]] ; then ./sdk boot ci/deploy.yml; fi
if [[ $DEV_MODE == 1 ]] ; then ./sdk boot ci/deploy.dev.yml; fi
- name: Run script
run: bash ./ci/check_boot.sh
bash_syntax_check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dev-mode: [
DEV_MODE=0,
DEV_MODE=1
]
name: Bash syntax check
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Boot
run: |
export ${{ matrix.dev-mode }}
chmod +x sdk
if [[ $DEV_MODE == 0 ]] ; then ./sdk boot ci/deploy.yml; fi
if [[ $DEV_MODE == 1 ]] ; then ./sdk boot ci/deploy.dev.yml; fi
- name: Run script
run: bash ./ci/check_boot.sh
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dev-mode: [ DEV_MODE=0, DEV_MODE=1 ]
name: Tests
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Boot
run: |
export ${{ matrix.dev-mode }}
chmod +x sdk
if [[ $DEV_MODE == 0 ]] ; then ./sdk boot ci/deploy.yml; fi
if [[ $DEV_MODE == 1 ]] ; then ./sdk boot ci/deploy.dev.yml; fi
- name: Run script
run: bash ./ci/tests.sh