From 78d45fba1ac84b222f0dd11431f0767d79024aca Mon Sep 17 00:00:00 2001 From: Hunter Gregory <42728408+huntergregory@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:03:09 -0700 Subject: [PATCH] ci: [Policy Assistant] tests in github action Signed-off-by: Hunter Gregory <42728408+huntergregory@users.noreply.github.com> --- .github/workflows/policy-assistant.yml | 96 ++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 .github/workflows/policy-assistant.yml diff --git a/.github/workflows/policy-assistant.yml b/.github/workflows/policy-assistant.yml new file mode 100644 index 00000000..517baa88 --- /dev/null +++ b/.github/workflows/policy-assistant.yml @@ -0,0 +1,96 @@ +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/ + 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