This repository has been archived by the owner on Mar 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
68 lines (68 loc) · 1.98 KB
/
main.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
name: kubevirt-image-service
on:
push:
branches:
- master
tags:
- v*
pull_request:
jobs:
unit_test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: unit test
run: ./testbox unit
lint:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: golangci/golangci-lint-action@v1
with:
version: v1.26
codegen_test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: codegen test
run: ./testbox codgen
e2e_test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: build
run: |
docker login -u=tmaxanc+robot -p=${{ secrets.QUAY_PASSWORD }} quay.io
./testbox build
- name: e2e test
run: ./testbox e2e
deploy-latest:
if: github.ref == 'refs/heads/master'
needs: [unit_test, lint, codegen_test, e2e_test]
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: build
run: |
./testbox operator-sdk_install
docker login -u=tmaxanc+robot -p=${{ secrets.QUAY_PASSWORD }} quay.io
./testbox build
- name: push
run: |
docker tag quay.io/tmaxanc/kubevirt-image-service:canary quay.io/tmaxanc/kubevirt-image-service:latest
docker push quay.io/tmaxanc/kubevirt-image-service:latest
deploy-release:
if: startsWith(github.ref, 'refs/tags/v')
needs: [unit_test, lint, codegen_test, e2e_test]
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: build
run: |
./testbox operator-sdk_install
docker login -u=tmaxanc+robot -p=${{ secrets.QUAY_PASSWORD }} quay.io
./testbox build
- name: push
run: |
docker tag quay.io/tmaxanc/kubevirt-image-service:canary quay.io/tmaxanc/kubevirt-image-service:${GITHUB_REF#refs/tags/}
docker push quay.io/tmaxanc/kubevirt-image-service:${GITHUB_REF#refs/tags/}