forked from ram9aj/debug-via-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yaml
38 lines (38 loc) · 842 Bytes
/
action.yaml
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
version: 2.1
jobs:
Devop:
docker:
- image: circleci/ruby:2.5.3
steps:
- run:
name: Install Dependencies
command: timeout 1m lscpu
Devop1:
docker:
- image: circleci/ruby:2.5.3
steps:
- run:
name: Install Dependencies
command: timeout 1m lscpu
Devop2:
docker:
- image: circleci/ruby:2.5.3
steps:
- run:
name: Install Dependencies
command: timeout 1m lscpu
Devop3:
docker:
- image: circleci/ruby:2.5.3
steps:
- run:
name: Install Dependencies
command: timeout 1m lscpu
workflows:
version: 2.1
build:
jobs:
- Devop
- Devop1
- Devop2
- Devop3