-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
83a9580
commit 9ca9984
Showing
1 changed file
with
63 additions
and
30 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
env: | ||
# Common versions | ||
GO_VERSION: '1.21' | ||
GOLANGCI_VERSION: 'v1.54.2' | ||
GOLANGCI_VERSION: 'v1.54.0' | ||
DOCKER_BUILDX_VERSION: 'v0.8.2' | ||
|
||
# Common users. We can't run a step 'if secrets.XXX != ""' but we can run a | ||
|
@@ -27,12 +27,38 @@ jobs: | |
steps: | ||
- name: Detect No-op Changes | ||
id: noop | ||
uses: fkirc/[email protected].0 | ||
uses: fkirc/[email protected].1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
paths_ignore: '["**.md", "**.png", "**.jpg"]' | ||
do_not_skip: '["workflow_dispatch", "schedule", "push"]' | ||
|
||
report-breaking-changes: | ||
runs-on: ubuntu-22.04 | ||
needs: detect-noop | ||
if: needs.detect-noop.outputs.noop != 'true' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Get modified CRDs | ||
id: modified-crds | ||
uses: tj-actions/changed-files@v45 | ||
with: | ||
files: | | ||
package/crds/** | ||
- name: Report breaking CRD OpenAPI v3 schema changes | ||
if: steps.modified-crds.outputs.any_changed == 'true' | ||
env: | ||
MODIFIED_CRD_LIST: ${{ steps.modified-crds.outputs.all_changed_files }} | ||
run: | | ||
make crddiff | ||
- name: Report native schema version changes | ||
if: ${{ inputs.upjet-based-provider }} | ||
run: | | ||
make schema-version-diff | ||
lint: | ||
runs-on: ubuntu-22.04 | ||
|
@@ -41,12 +67,12 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v2 | ||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
|
||
|
@@ -55,14 +81,14 @@ jobs: | |
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT | ||
|
||
- name: Cache the Go Build Cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.go.outputs.cache }} | ||
key: ${{ runner.os }}-build-lint-${{ hashFiles('**/go.sum') }} | ||
restore-keys: ${{ runner.os }}-build-lint- | ||
|
||
- name: Cache Go Dependencies | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: .work/pkg | ||
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }} | ||
|
@@ -74,7 +100,7 @@ jobs: | |
# We could run 'make lint' but we prefer this action because it leaves | ||
# 'annotations' (i.e. it comments on PRs to point out linter violations). | ||
- name: Lint | ||
uses: golangci/golangci-lint-action@v3 | ||
uses: golangci/golangci-lint-action@v6 | ||
with: | ||
version: ${{ env.GOLANGCI_VERSION }} | ||
|
||
|
@@ -85,12 +111,12 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v2 | ||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
|
||
|
@@ -102,14 +128,14 @@ jobs: | |
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT | ||
|
||
- name: Cache the Go Build Cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.go.outputs.cache }} | ||
key: ${{ runner.os }}-build-check-diff-${{ hashFiles('**/go.sum') }} | ||
restore-keys: ${{ runner.os }}-build-check-diff- | ||
|
||
- name: Cache Go Dependencies | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: .work/pkg | ||
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }} | ||
|
@@ -128,15 +154,15 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Fetch History | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v2 | ||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
|
||
|
@@ -145,14 +171,14 @@ jobs: | |
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT | ||
|
||
- name: Cache the Go Build Cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.go.outputs.cache }} | ||
key: ${{ runner.os }}-build-unit-tests-${{ hashFiles('**/go.sum') }} | ||
restore-keys: ${{ runner.os }}-build-unit-tests- | ||
|
||
- name: Cache Go Dependencies | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: .work/pkg | ||
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }} | ||
|
@@ -165,7 +191,7 @@ jobs: | |
run: make -j2 test | ||
|
||
- name: Publish Unit Test Coverage | ||
uses: codecov/codecov-action@v1 | ||
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4 | ||
with: | ||
flags: unittests | ||
file: _output/tests/linux_amd64/coverage.txt | ||
|
@@ -177,15 +203,15 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Fetch History | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v2 | ||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
|
||
|
@@ -194,14 +220,14 @@ jobs: | |
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT | ||
|
||
- name: Cache the Go Build Cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.go.outputs.cache }} | ||
key: ${{ runner.os }}-build-unit-tests-${{ hashFiles('**/go.sum') }} | ||
restore-keys: ${{ runner.os }}-build-unit-tests- | ||
|
||
- name: Cache Go Dependencies | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: .work/pkg | ||
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }} | ||
|
@@ -215,39 +241,45 @@ jobs: | |
|
||
publish-artifacts: | ||
runs-on: ubuntu-22.04 | ||
needs: detect-noop | ||
needs: | ||
- detect-noop | ||
- report-breaking-changes | ||
- lint | ||
- check-diff | ||
- unit-tests | ||
- local-deploy | ||
if: needs.detect-noop.outputs.noop != 'true' | ||
|
||
steps: | ||
- name: Setup QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3 | ||
with: | ||
platforms: all | ||
|
||
- name: Setup Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
uses: docker/setup-buildx-action@v3 | ||
with: | ||
version: ${{ env.DOCKER_BUILDX_VERSION }} | ||
install: true | ||
|
||
- name: Login to Upbound | ||
uses: docker/login-action@v2 | ||
uses: docker/login-action@v3 | ||
if: env.UPBOUND_MARKETPLACE_PUSH_ROBOT_USR != '' | ||
with: | ||
registry: xpkg.upbound.io | ||
username: ${{ secrets.UPBOUND_MARKETPLACE_PUSH_ROBOT_USR }} | ||
password: ${{ secrets.UPBOUND_MARKETPLACE_PUSH_ROBOT_PSW }} | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Fetch History | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v2 | ||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
|
||
|
@@ -256,14 +288,14 @@ jobs: | |
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT | ||
|
||
- name: Cache the Go Build Cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.go.outputs.cache }} | ||
key: ${{ runner.os }}-build-publish-artifacts-${{ hashFiles('**/go.sum') }} | ||
restore-keys: ${{ runner.os }}-build-publish-artifacts- | ||
|
||
- name: Cache Go Dependencies | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: .work/pkg | ||
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }} | ||
|
@@ -280,10 +312,11 @@ jobs: | |
BUILD_ARGS: "--load" | ||
|
||
- name: Upload Artifacts to GitHub | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4 | ||
with: | ||
name: output | ||
path: _output/** | ||
|
||
- name: Publish Artifacts | ||
run: make publish BRANCH_NAME=${GITHUB_REF##*/} | ||
if: env.UPBOUND_MARKETPLACE_PUSH_ROBOT_USR != '' | ||
run: make publish BRANCH_NAME=${GITHUB_REF##*/} |