mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-17 13:24:21 -05:00
E2E: Add manual macOS E2E test
This commit is contained in:
parent
6df92c127c
commit
1dad1631ca
14
.github/actions/build_cdbg/action.yml
vendored
Normal file
14
.github/actions/build_cdbg/action.yml
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
name: Build cdbg
|
||||||
|
description: Build the Constellation cdbg binary
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: "composite"
|
||||||
|
steps:
|
||||||
|
- name: Build cdbg
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "::group::Build cdbg"
|
||||||
|
mkdir -p build && cd build
|
||||||
|
cmake ..
|
||||||
|
make cdbg
|
||||||
|
echo "::endgroup::"
|
4
.github/actions/build_debugd/action.yml
vendored
4
.github/actions/build_debugd/action.yml
vendored
@ -7,7 +7,7 @@ inputs:
|
|||||||
default: "./debugd"
|
default: "./debugd"
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
# Linux runner only
|
# Linux runner only (homedir trick does not work on macOS, required for private runner)
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
@ -22,6 +22,6 @@ runs:
|
|||||||
export GOPATH=${homedir}/go
|
export GOPATH=${homedir}/go
|
||||||
export GOPRIVATE=github.com/edgelesssys
|
export GOPRIVATE=github.com/edgelesssys
|
||||||
export GOMODCACHE=${homedir}/.cache/go-mod
|
export GOMODCACHE=${homedir}/.cache/go-mod
|
||||||
make debugd cdbg
|
make debugd
|
||||||
mv -n debugd "${{ inputs.outputPath }}"
|
mv -n debugd "${{ inputs.outputPath }}"
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
@ -141,6 +141,7 @@ runs:
|
|||||||
- name: Cdbg deploy
|
- name: Cdbg deploy
|
||||||
run: |
|
run: |
|
||||||
echo "::group::cdbg deploy"
|
echo "::group::cdbg deploy"
|
||||||
|
chmod +x $GITHUB_WORKSPACE/build/cdbg
|
||||||
cdbg deploy --bootstrapper $GITHUB_WORKSPACE/build/bootstrapper
|
cdbg deploy --bootstrapper $GITHUB_WORKSPACE/build/bootstrapper
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
shell: bash
|
shell: bash
|
||||||
|
37
.github/actions/e2e_test/action.yml
vendored
37
.github/actions/e2e_test/action.yml
vendored
@ -46,22 +46,47 @@ inputs:
|
|||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
|
- name: Determine build target
|
||||||
|
id: determine-build-target
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "::set-output name=hostOS::$(go env GOOS)"
|
||||||
|
echo "::set-output name=hostArch::$(go env GOARCH)"
|
||||||
|
|
||||||
- name: Build CLI
|
- name: Build CLI
|
||||||
uses: ./.github/actions/build_cli
|
uses: ./.github/actions/build_cli
|
||||||
|
with:
|
||||||
|
targetOS: ${{ steps.determine-build-target.outputs.hostOS }}
|
||||||
|
targetArch: ${{ steps.determine-build-target.outputs.hostArch }}
|
||||||
|
|
||||||
|
# macOS runners don't have Docker preinstalled, so they cannot build the bootstrapper.
|
||||||
|
# But we can use a Linux runner to build it and store/retrieve it from the action cache.
|
||||||
|
- name: Download the bootstrapper from cache
|
||||||
|
id: download-bootstrapper-cache
|
||||||
|
if: inputs.isDebugImage == 'true' && runner.os == 'macOS'
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
key: bootstrapper-${{ github.sha }}
|
||||||
|
path: "build/bootstrapper"
|
||||||
|
|
||||||
- name: Build the bootstrapper
|
- name: Build the bootstrapper
|
||||||
id: build-bootstrapper
|
id: build-bootstrapper
|
||||||
uses: ./.github/actions/build_bootstrapper
|
uses: ./.github/actions/build_bootstrapper
|
||||||
if: ${{ inputs.isDebugImage == 'true' }}
|
if: inputs.isDebugImage == 'true' && runner.os != 'macOS'
|
||||||
- name: Build debugd
|
|
||||||
id: build-debugd
|
- name: Build cdbg
|
||||||
uses: ./.github/actions/build_debugd
|
id: build-cdbg
|
||||||
if: ${{ inputs.isDebugImage == 'true' }}
|
uses: ./.github/actions/build_cdbg
|
||||||
|
if: inputs.isDebugImage == 'true'
|
||||||
|
with:
|
||||||
|
targetOS: ${{ steps.determine-build-target.outputs.hostOS }}
|
||||||
|
targetArch: ${{ steps.determine-build-target.outputs.hostArch }}
|
||||||
|
|
||||||
- name: Login to GCP
|
- name: Login to GCP
|
||||||
uses: ./.github/actions/gcp_login
|
uses: ./.github/actions/gcp_login
|
||||||
with:
|
with:
|
||||||
gcp_service_account_json: ${{ inputs.gcp_service_account_json }}
|
gcp_service_account_json: ${{ inputs.gcp_service_account_json }}
|
||||||
if: ${{ inputs.cloudProvider == 'gcp' }}
|
if: inputs.cloudProvider == 'gcp'
|
||||||
|
|
||||||
- name: Create cluster
|
- name: Create cluster
|
||||||
uses: ./.github/actions/constellation_create
|
uses: ./.github/actions/constellation_create
|
||||||
|
@ -72,9 +72,9 @@ runs:
|
|||||||
id: build-bootstrapper
|
id: build-bootstrapper
|
||||||
uses: ./.github/actions/build_bootstrapper
|
uses: ./.github/actions/build_bootstrapper
|
||||||
if: ${{ inputs.isDebugImage == 'true' }}
|
if: ${{ inputs.isDebugImage == 'true' }}
|
||||||
- name: Build debugd
|
- name: Build cdbg
|
||||||
id: build-debugd
|
id: build-cdbg
|
||||||
uses: ./.github/actions/build_debugd
|
uses: ./.github/actions/build_cdbg
|
||||||
if: ${{ inputs.isDebugImage == 'true' }}
|
if: ${{ inputs.isDebugImage == 'true' }}
|
||||||
|
|
||||||
- name: Login to GCP
|
- name: Login to GCP
|
||||||
|
14
.github/workflows/build-binaries.yml
vendored
14
.github/workflows/build-binaries.yml
vendored
@ -46,6 +46,20 @@ jobs:
|
|||||||
- name: Build debugd
|
- name: Build debugd
|
||||||
uses: ./.github/actions/build_debugd
|
uses: ./.github/actions/build_debugd
|
||||||
|
|
||||||
|
build-cdbg:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Setup Go environment
|
||||||
|
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f
|
||||||
|
with:
|
||||||
|
go-version: "1.19.1"
|
||||||
|
|
||||||
|
- name: Check out repository
|
||||||
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||||||
|
|
||||||
|
- name: Build cdbg
|
||||||
|
uses: ./.github/actions/build_cdbg
|
||||||
|
|
||||||
build-disk-mapper:
|
build-disk-mapper:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
157
.github/workflows/e2e-test-manual-macos.yml
vendored
Normal file
157
.github/workflows/e2e-test-manual-macos.yml
vendored
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
name: e2e Test Manual (macOS CLI)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
workerNodesCount:
|
||||||
|
description: "Number of worker nodes to spawn."
|
||||||
|
default: "2"
|
||||||
|
required: true
|
||||||
|
controlNodesCount:
|
||||||
|
description: "Number of control-plane nodes to spawn."
|
||||||
|
default: "1"
|
||||||
|
required: true
|
||||||
|
autoscale:
|
||||||
|
description: "Autoscale?"
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
required: true
|
||||||
|
cloudProvider:
|
||||||
|
description: "Which cloud provider to use."
|
||||||
|
type: choice
|
||||||
|
options:
|
||||||
|
- "gcp"
|
||||||
|
- "azure"
|
||||||
|
default: "gcp"
|
||||||
|
required: true
|
||||||
|
sonobuoyTestSuiteCmd:
|
||||||
|
description: "Which tests should be run? Check README for guidance!"
|
||||||
|
default: "--mode quick"
|
||||||
|
required: true
|
||||||
|
kubernetesVersion:
|
||||||
|
description: "Kubernetes version to create the cluster from."
|
||||||
|
default: "1.24"
|
||||||
|
required: true
|
||||||
|
coreosImage:
|
||||||
|
description: "CoreOS image (full path). Examples are in internal/config/config.go."
|
||||||
|
default: "debug-latest"
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
isDebugImage:
|
||||||
|
description: "Is CoreOS image a debug image?"
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
|
required: false
|
||||||
|
machineType:
|
||||||
|
description: "Override VM machine type. Leave as 'default' or empty to use the default VM type for the selected cloud provider."
|
||||||
|
type: string
|
||||||
|
default: "default"
|
||||||
|
required: false
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-bootstrapper-linux:
|
||||||
|
name: "Build bootstrapper (debug image)"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event.inputs.isDebugImage == 'true' }}
|
||||||
|
steps:
|
||||||
|
- name: Setup Go environment
|
||||||
|
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f
|
||||||
|
if: ${{ github.event.steps.check-bootstrapper-cache.cache-hit != 'true'}}
|
||||||
|
with:
|
||||||
|
go-version: "1.19.1"
|
||||||
|
|
||||||
|
- name: Check out repository
|
||||||
|
if: ${{ github.event.steps.check-bootstrapper-cache.cache-hit != 'true'}}
|
||||||
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||||||
|
|
||||||
|
- name: Build bootstrapper
|
||||||
|
if: ${{ github.event.steps.check-bootstrapper-cache.cache-hit != 'true'}}
|
||||||
|
uses: ./.github/actions/build_bootstrapper
|
||||||
|
|
||||||
|
- name: Upload bootstrapper to cache
|
||||||
|
if: ${{ github.event.steps.check-bootstrapper-cache.cache-hit != 'true'}}
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
key: bootstrapper-${{ github.sha }}
|
||||||
|
path: "build/bootstrapper"
|
||||||
|
|
||||||
|
e2e-test-manual-darwin:
|
||||||
|
name: "e2e Test Manual (macOS)"
|
||||||
|
runs-on: macos-12
|
||||||
|
needs: build-bootstrapper-linux
|
||||||
|
if: ${{ always() && !cancelled() && (needs.build-bootstrapper-linux.result == 'success' || needs.build-bootstrapper-linux.result == 'skipped') }}
|
||||||
|
steps:
|
||||||
|
- name: Check out repository
|
||||||
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||||||
|
|
||||||
|
- name: Setup Go environment
|
||||||
|
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f
|
||||||
|
with:
|
||||||
|
go-version: "1.19.1"
|
||||||
|
|
||||||
|
- name: Login to Azure
|
||||||
|
if: ${{ github.event.inputs.cloudProvider == 'azure' }}
|
||||||
|
uses: ./.github/actions/azure_login
|
||||||
|
with:
|
||||||
|
azure_credentials: ${{ secrets.AZURE_E2E_CREDENTIALS }}
|
||||||
|
|
||||||
|
- name: Create Azure resource group
|
||||||
|
id: az_resource_group_gen
|
||||||
|
if: ${{ github.event.inputs.cloudProvider == 'azure' }}
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
uuid=$(uuidgen)
|
||||||
|
name=e2e-test-${uuid%%-*}
|
||||||
|
az group create --location westus --name $name --tags e2e
|
||||||
|
echo "::set-output name=res_group_name::$name"
|
||||||
|
|
||||||
|
- name: Set up gcloud CLI
|
||||||
|
if: ${{ github.event.inputs.cloudProvider == 'gcp' }}
|
||||||
|
uses: google-github-actions/setup-gcloud@877d4953d2c70a0ba7ef3290ae968eb24af233bb
|
||||||
|
|
||||||
|
- name: Run manual E2E test
|
||||||
|
uses: ./.github/actions/e2e_test
|
||||||
|
with:
|
||||||
|
workerNodesCount: ${{ github.event.inputs.workerNodesCount }}
|
||||||
|
controlNodesCount: ${{ github.event.inputs.controlNodesCount }}
|
||||||
|
autoscale: ${{ github.event.inputs.autoscale }}
|
||||||
|
cloudProvider: ${{ github.event.inputs.cloudProvider }}
|
||||||
|
machineType: ${{ github.event.inputs.machineType }}
|
||||||
|
gcp_service_account_json: ${{ secrets.GCP_SERVICE_ACCOUNT }}
|
||||||
|
gcpClusterServiceAccountKey: ${{ secrets.GCP_CLUSTER_SERVICE_ACCOUNT }}
|
||||||
|
sonobuoyTestSuiteCmd: ${{ github.event.inputs.sonobuoyTestSuiteCmd }}
|
||||||
|
kubernetesVersion: ${{ github.event.inputs.kubernetesVersion }}
|
||||||
|
azureClientSecret: ${{ secrets.AZURE_E2E_CLIENT_SECRET }}
|
||||||
|
azureResourceGroup: ${{ steps.az_resource_group_gen.outputs.res_group_name }}
|
||||||
|
coreosImage: ${{ github.event.inputs.coreosImage }}
|
||||||
|
isDebugImage: ${{ github.event.inputs.isDebugImage }}
|
||||||
|
|
||||||
|
- name: Always terminate cluster
|
||||||
|
if: always()
|
||||||
|
continue-on-error: true
|
||||||
|
uses: ./.github/actions/constellation_destroy
|
||||||
|
|
||||||
|
- name: Notify teams channel
|
||||||
|
if: ${{ failure() && github.ref == 'refs/heads/main' }}
|
||||||
|
run: |
|
||||||
|
brew install gettext && brew link --force gettext
|
||||||
|
export TEAMS_JOB_NAME="${{ github.event.inputs.cloudProvider }} (macOS, manual)"
|
||||||
|
export TEAMS_RUN_ID=${{ github.run_id }}
|
||||||
|
envsubst < teams-payload.json > to-be-send.json
|
||||||
|
curl \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d @to-be-send.json \
|
||||||
|
"${{ secrets.MS_TEAMS_WEBHOOK_URI }}"
|
||||||
|
shell: bash
|
||||||
|
working-directory: .github/actions/e2e_test
|
||||||
|
|
||||||
|
- name: Always destroy Azure resource group
|
||||||
|
if: ${{ always() && github.event.inputs.cloudProvider == 'azure' }}
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
az group delete \
|
||||||
|
--name ${{ steps.az_resource_group_gen.outputs.res_group_name }} \
|
||||||
|
--force-deletion-types Microsoft.Compute/virtualMachineScaleSets \
|
||||||
|
--force-deletion-types Microsoft.Compute/virtualMachines \
|
||||||
|
--no-wait \
|
||||||
|
--yes
|
Loading…
x
Reference in New Issue
Block a user