Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Bump actions/checkout from 1 to 2 #7

Bump actions/checkout from 1 to 2

Bump actions/checkout from 1 to 2 #7

name: Check - Management Docker Cluster
on:
pull_request:
branches:
- main
- release-*
paths:
- "Makefile"
- ".github/workflows/check-pr-docker-management.yaml"
types:
- assigned
- opened
- synchronize
- reopened
jobs:
setup-runner:
name: Start self-hosted EC2 runner
runs-on: ubuntu-latest
outputs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Start EC2 runner
id: start-ec2-runner
shell: bash
run: |
INSTANCE_NAME="id-${GITHUB_RUN_ID}-${GITHUB_RUN_NUMBER}"
echo "INSTANCE_NAME: ${INSTANCE_NAME}"
echo ::set-output name=ec2-instance-id::${INSTANCE_NAME}
build-release:
name: Build Release based on PR
needs: setup-runner # required to start the main job when the runner is ready
runs-on: ${{ needs.setup-runner.outputs.ec2-instance-id }} # run the job on the newly created runner
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: "1.17"
id: go
- name: Config git
shell: bash
run: |
git config --global init.defaultBranch main
- name: Check out code
uses: actions/checkout@v2
- name: Restore Go Cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies
shell: bash
run: |
make get-deps
- name: Build
shell: bash
run: |
make ensure-deps
make release ENVS=linux-amd64
- name: Install
shell: bash
run: |
cd `find ./release -type d -name "tce-linux-amd64-*" | xargs -n1 echo -n`
ALLOW_INSTALL_AS_ROOT=true ./install.sh
create-cluster:
name: Create Cluster
needs:
- setup-runner # required to start the main job when the runner is ready
- build-release
runs-on: ${{ needs.setup-runner.outputs.ec2-instance-id }} # run the job on the newly created runner
steps:
- name: Create Cluster
shell: bash
run: CLUSTER_PLAN=dev tanzu management-cluster create mytest -i docker -v 10
- name: Check Create Cluster
shell: bash
run: |
./hack/runner/check-setup.sh
delete-cluster:
name: Delete Cluster
needs:
- setup-runner # required to start the main job when the runner is ready
- create-cluster
runs-on: ${{ needs.setup-runner.outputs.ec2-instance-id }} # run the job on the newly created runner
steps:
- name: Delete Cluster
shell: bash
run: tanzu management-cluster delete mytest --yes -v 10
- name: Check Delete Cluster
shell: bash
run: |
./hack/runner/check-teardown.sh
teardown-runner:
name: Stop self-hosted EC2 runner
needs:
- setup-runner # required to get output from the setup-runner job
- delete-cluster # required to wait when the main job is done
runs-on: ubuntu-latest
steps:
- name: Stop EC2 runner
id: stop-ec2-runner
shell: bash
run: |
INSTANCE_NAME="id-${GITHUB_RUN_ID}-${GITHUB_RUN_NUMBER}"
echo "INSTANCE_NAME: ${INSTANCE_NAME}"