-
Notifications
You must be signed in to change notification settings - Fork 3
/
.drone.yml
51 lines (51 loc) · 1.03 KB
/
.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: amd64
platform:
os: linux
arch: amd64
steps:
- name: test
image: ruby:2.5
commands:
- bundle install
- bundle exec rspec
- ./bin/flying-shuttle -h
- name: docker
image: plugins/docker
settings:
registry: quay.io
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: quay.io/kontena/weave-flying-shuttle-amd64
dockerfile: Dockerfile
auto_tag: true
when:
event: [tag, push]
---
kind: pipeline
name: arm64
platform:
os: linux
arch: arm64
steps:
- name: test
image: ruby:2.5
commands:
- bundle install
- bundle exec rspec
- ./bin/flying-shuttle -h
- name: docker
image: plugins/docker
settings:
registry: quay.io
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: quay.io/kontena/weave-flying-shuttle-arm64
dockerfile: Dockerfile
auto_tag: true
when:
event: [tag, push]