Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 365fddb

Browse files
authored
Merge pull request #307 from detiber/capi-v1
⚠️ CAPI v1 support
2 parents b77dce4 + 1a7791c commit 365fddb

File tree

177 files changed

+11303
-10734
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+11303
-10734
lines changed

.dockerignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
.git
2+
.github
3+
.vscode
4+
config/
5+
hack/
6+
docs/
7+
templates/
8+
scripts/
9+
**/.md
10+
tilt-provider.json
11+
test/
12+
_artifacts
13+
.tiltbuild
14+
Makefile
15+
*.md
16+
.gitignore
17+
.golangci.yml
18+
cloudbuild.yaml
19+
clusterctl-settings.json
20+
*.example
21+
OWNERS
22+
OWNERS_ALIASES
23+
PROJECT
24+
SECURITY_CONTACTS

.github/actions/setup-go/action.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: 'Setup Go'
2+
description: 'Setup Go'
3+
inputs:
4+
version:
5+
description: 'Go Version to setup'
6+
required: true
7+
default: "1.17"
8+
runs:
9+
using: "composite"
10+
steps:
11+
- uses: actions/setup-go@v2
12+
with:
13+
go-version: ${{ inputs.version }}
14+
- id: go-cache-paths
15+
shell: bash
16+
run: |
17+
echo "::set-output name=go-build::$(go env GOCACHE)"
18+
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
19+
- name: Go Mod Cache
20+
uses: actions/cache@v2
21+
with:
22+
path: ${{ steps.go-cache-paths.outputs.go-mod }}
23+
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
24+
restore-keys: |
25+
${{ runner.os }}-go-mod-
26+
- name: Go Build Cache
27+
uses: actions/cache@v2
28+
with:
29+
path: ${{ steps.go-cache-paths.outputs.go-build }}
30+
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
31+
restore-keys: |
32+
${{ runner.os }}-go-build-

0 commit comments

Comments
 (0)