feat: Cache CI-built cloud-provider-kind
Docker image
#264
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: integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
single-trust-zone: | |
name: single trust zone | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install just | |
uses: taiki-e/install-action@just | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Build and run tests | |
run: just build | |
- name: Get cloud-provider-kind repo | |
run: | | |
git clone https://github.com/kubernetes-sigs/cloud-provider-kind | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build cloud-provider-kind image | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./cloud-provider-kind | |
push: false | |
tags: cloud-provider-kind-cloud-provider:latest | |
load: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Install kind | |
run: just install-kind | |
- name: Install ko | |
uses: ko-build/[email protected] | |
env: | |
KO_DOCKER_REPO: kind.local | |
- name: Create a kind cluster | |
run: just create-kind-cluster | |
- name: Test | |
run: just integration-test single-trust-zone | |
federation: | |
name: federation | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Repeat the test with in-process plugins and the test gRPC plugin. | |
plugin: | |
- "" | |
- "cofidectl-test-plugin" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install just | |
uses: taiki-e/install-action@just | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Build and run tests | |
run: just build | |
- name: Get cloud-provider-kind repo | |
run: | | |
git clone https://github.com/kubernetes-sigs/cloud-provider-kind | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build cloud-provider-kind image | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./cloud-provider-kind | |
push: false | |
tags: cloud-provider-kind-cloud-provider:latest | |
load: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Build and install test plugin | |
run: just install-test-plugin | |
if: ${{ matrix.plugin == 'cofidectl-test-plugin' }} | |
- name: Install kind | |
run: just install-kind | |
- name: Install ko | |
uses: ko-build/[email protected] | |
env: | |
KO_DOCKER_REPO: kind.local | |
- name: Create kind clusters | |
run: just create-kind-clusters 2 | |
- name: Test | |
run: just integration-test federation | |
env: | |
DATA_SOURCE_PLUGIN: ${{ matrix.plugin }} | |
PROVISION_PLUGIN: ${{ matrix.plugin }} |