generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 32
98 lines (82 loc) · 2.17 KB
/
policy-assistant.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: policy-assistant
on:
push:
branches:
- 'main'
- 'release*'
tags:
- 'v*'
paths:
- 'cmd/policy-assistant/**'
- '.github/workflows/policy-assistant.yml'
pull_request:
branches:
- 'main'
- 'release*'
paths:
- 'cmd/policy-assistant/**'
- '.github/workflows/policy-assistant.yml'
workflow_dispatch:
env:
GO_VERSION: "1.22.0"
permissions: write-all
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Run Unit Tests
run: |
cd cmd/policy-assistant/
go test ./...
build:
name: Build Cyclonus
runs-on: ubuntu-22.04
needs: unit-tests
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Build Cyclonus
run: |
cd cmd/policy-assistant/
make cyclonus
- name: Save Cyclonus Binary
run: |
mkdir -p artifacts
cp cmd/policy-assistant/cmd/cyclonus/cyclonus artifacts/
- name: Upload Cyclonus Binary
uses: actions/upload-artifact@v2
with:
name: cyclonus-binary
path: artifacts/cyclonus
integration-tests:
name: Integration Tests
runs-on: ubuntu-22.04
needs: build
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Download Cyclonus Binary
uses: actions/download-artifact@v2
with:
name: cyclonus-binary
path: artifacts
- name: Run Integration Test - Explain Mode
run: |
artifacts/cyclonus analyze --use-example-policies --mode explain
- name: Run Integration Test - Probe Mode
run: |
artifacts/cyclonus analyze --use-example-policies --mode probe --probe-path cmd/policy-assistant/examples/demos/kubecon-eu-2024/demo-probe.json
- name: Run Integration Test - Walkthrough Mode
run: |
artifacts/cyclonus analyze --use-example-policies --mode walkthrough