-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
config.yml
42 lines (41 loc) · 954 Bytes
/
config.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
version: 2
jobs:
make-eksctl-image:
# use machine build, as otherwise we cannot use make and have to duplicate makefile
machine: true
steps:
- checkout
- run: mkdir -p ./test-results/ginkgo
- run: make eksctl-image
- store_test_results:
path: ./test-results
- store_artifacts:
path: ./test-results
make-release:
machine: true
steps:
- checkout
- run: make release
workflows:
version: 2
any-commit:
jobs:
- make-eksctl-image:
filters:
tags:
ignore: /.*/
release:
jobs:
- make-eksctl-image:
filters:
branches:
ignore: /.*/
tags:
ignore: /^latest_release$/
- make-release:
requires: [make-eksctl-image]
filters:
branches:
ignore: /.*/
tags:
ignore: /^latest_release$/