-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshippable.jobs.yml
115 lines (112 loc) · 2.54 KB
/
shippable.jobs.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
jobs:
- name: emergency-1
type: runSh
runtime:
architecture: x86_64
nodePool: x8664u14dynamic
container: true
flags:
- emergency
steps:
- TASK:
name: echo-hello
script:
- echo "hello"
- name: emergency-2
type: runSh
runtime:
architecture: x86_64
nodePool: custom__x86_64__Ubuntu_16_04
container: false
flags:
- emergency
steps:
- TASK:
name: echo-hello
script:
- echo "hello"
# - name: aarch64-new-yml-def-container
# type: runSh
# runtime:
# architecture: aarch64
# nodePool: x8664u16custom
# container: true
# steps:
# - IN: aarch-gitRepo
# - TASK:
# name: system-facts
# script:
# - uname -m
# - ps aux
# - ls -a /var/lib/shippable/2e067920-ef36-43e6-80ee-a5adef3d4ca1/build/IN/aarch-gitRepo/gitRepo
#
# - name: aarch64-new-yml-cus-container
# type: runSh
# runtime:
# architecture: aarch64
# nodePool: x8664u16custom
# container: true
# steps:
# - TASK:
# name: default-container
# script:
# - docker ps
# - TASK:
# name: pyt-container
# runtime:
# options:
# imageName: drydockaarch64/u16pyt
# imageTag: master
# script:
# - docker ps
#
# - name: old-min-sh
# type: runSh
# steps:
# - TASK:
# - script: echo "hello world"
#
# - name: new-min-sh
# type: runSh
# runtime:
# architecture: x86_64
# nodePool: x8664u16custom
# container: false
# steps:
# - TASK:
# name: echo-facts
# script:
# - echo "cats are cute"
# - printenv
# # - ssh [email protected] cat get-docker.sh
#
# - name: rc-ci_runCI
# type: runCI
# steps:
# - IN: ci-params
# - IN: ci-gitRepo
- name: x86-64-mac-min
type: runSh
runtime:
architecture: x86_64
os: macOS_10.12
container: false
steps:
- TASK:
name: say-hello
script:
- echo "hello"
- /usr/bin/xcodebuild -version
- name: x86-64-ubuntu_16_04_azure_cli
type: runSh
steps:
- IN: test-azure-cli
- TASK:
runtime:
container: true
name: test-azure-cli-vm-list
script:
- uname -a
- sleep 3
- az --version || true
- sleep 10