Add initial implementation for conform. GH action #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run-conformance-suite | |
on: | |
pull_request | |
# when complete | |
# workflow_dispatch: | |
# inputs: | |
# channel: | |
# description: 'Channel to use for MicroK8s' | |
# required: true | |
# default: '1.30/stable' | |
jobs: | |
run-conformance-suite: | |
name: Run Conformance Suite | |
runs-on: ubuntu-latest | |
env: | |
CHANNEL: 1.30/stable | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo snap install go --classic | |
go install github.com/vmware-tanzu/[email protected] | |
sudo snap install microk8s --classic --channel $CHANNEL | |
sudo microk8s status --wait-ready | |
sudo snap install multipass | |
- name: Generate Join Token | |
id: get_token | |
run: echo "WORKER_TOKEN=$(microk8s add-node | grep "^microk8s join .* --worker\$" | awk '{print $3})'" >> "$GITHUB_OUTPUT" | |
- name: Launch VM and Join Cluster | |
run: | | |
multipass launch --name microk8s-worker-vm | |
multipass exec microk8s-vm -- bash -c "sudo snap install microk8s --classic --channel $CHANNEL; sudo microk8s join ${{ steps.get_token.outputs.WORKER_TOKEN }}" |