-
Notifications
You must be signed in to change notification settings - Fork 1
/
.drone.yml
51 lines (44 loc) · 966 Bytes
/
.drone.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
kind: pipeline
name: sisyphus
steps:
- name: test-shellcheck
image: koalaman/shellcheck-alpine:latest
commands:
- apk update && apk add bash
- bash -c 'shellcheck sisyphus'
- name: test-sisyphus-alpine
image: alpine
commands:
- ./sisyphus
- ./sisyphus -k write
depends_on: [test-shellcheck]
- name: test-sisyphus-ubuntu
image: ubuntu
commands:
- ./sisyphus
- ./sisyphus -k read
depends_on: [test-shellcheck]
- name: test-sisyphus-centos
image: centos
commands:
- ./sisyphus
- ./sisyphus -k eat
depends_on: [test-shellcheck]
- name: test-sisyphus-debian
image: debian
commands:
- ./sisyphus
- ./sisyphus -k drink
depends_on: [test-shellcheck]
- name: test-sisyphus-fedora
image: fedora
commands:
- ./sisyphus
- ./sisyphus -k take
depends_on: [test-shellcheck]
- name: test-sisyphus-opensuse
image: opensuse/tumbleweed
commands:
- ./sisyphus
- ./sisyphus -k go
depends_on: [test-shellcheck]