mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
name: sonobuoy
|
|
description: "Execute the e2e test framework sonobuoy."
|
|
|
|
inputs:
|
|
cloudProvider:
|
|
description: "CSP name necessary for artifact naming."
|
|
required: true
|
|
sonobuoyTestSuiteCmd:
|
|
description: "Which tests should be run?"
|
|
kubeconfig:
|
|
description: "The kubeconfig of the cluster to test."
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install sonobuoy
|
|
shell: bash
|
|
env:
|
|
SONOBUOY_VER: "0.56.16"
|
|
run: |
|
|
HOSTOS="$(go env GOOS)"
|
|
HOSTARCH="$(go env GOARCH)"
|
|
curl -fsSLO https://github.com/vmware-tanzu/sonobuoy/releases/download/v${SONOBUOY_VER}/sonobuoy_${SONOBUOY_VER}_${HOSTOS}_${HOSTARCH}.tar.gz
|
|
tar -xzf sonobuoy_${SONOBUOY_VER}_${HOSTOS}_${HOSTARCH}.tar.gz
|
|
install sonobuoy /usr/local/bin
|
|
|
|
- name: Sonobuoy version
|
|
shell: bash
|
|
run: sonobuoy version
|
|
|
|
- name: Run e2e test
|
|
shell: bash
|
|
env:
|
|
KUBECONFIG: ${{ inputs.kubeconfig }}
|
|
run: sonobuoy run --wait=300 ${{ inputs.sonobuoyTestSuiteCmd }} --kubeconfig constellation-admin.conf
|
|
|
|
- name: Download results
|
|
shell: bash
|
|
env:
|
|
KUBECONFIG: ${{ inputs.kubeconfig }}
|
|
run: sonobuoy retrieve --kubeconfig constellation-admin.conf
|
|
|
|
- name: Upload test results
|
|
if: always() && !env.ACT
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
|
with:
|
|
name: "sonobuoy_logs_${{ inputs.cloudProvider}}.tar.gz"
|
|
path: "*_sonobuoy_*.tar.gz"
|
|
|
|
# Only works on "sonobuoy full" tests (e2e plugin)
|
|
- name: Publish test results
|
|
if: (!env.ACT) && contains(inputs.sonobuoyTestSuiteCmd, '--plugin e2e')
|
|
uses: mikepenz/action-junit-report@4fa23552acda20a6a1d44f16224a90efbeb6c5f1 # v3.7.5
|
|
with:
|
|
report_paths: "**/junit_01.xml"
|
|
fail_on_failure: true
|