Trigger documentation site rebuild after function release #6205
Workflow file for this run
This file contains hidden or 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
| # Copyright 2026 The kpt Authors. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'documentation/**' | |
| pull_request: | |
| branches: | |
| - main | |
| - "*/v[0-9]+.[0-9]+" | |
| paths-ignore: | |
| - 'documentation/**' | |
| schedule: | |
| - cron: "0 17 * * *" | |
| concurrency: | |
| # If a job with a concurrency group is running with cancel-in-progress, that job is cancelled when a new job with same concurrency group is started. | |
| # In a workflow github.head_ref exists only for PRs while github.ref exists for the repo branches/tags. | |
| # Concurrency group will be of form ${{ github.head_ref }}-ci when triggered via PR creating 1 group per PR. Older jobs are cancelled when new commits are pushed to that PR branch. | |
| # Concurrency group will be of form ${{ github.ref }}-ci when triggered from repo branch or tag ref. Older jobs are cancelled when new jobs are triggered from that same branch/tag. | |
| # `-ci` suffix is to namespace the concurrency group incase you want to add a group for another workflow in the future. | |
| group: "${{ github.head_ref || github.ref }}-ci" | |
| cancel-in-progress: true | |
| jobs: | |
| shell-ci: | |
| strategy: | |
| matrix: | |
| platform: [ubuntu-latest] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Lint shell scripts, ignoring third-party files | |
| run: | | |
| find . -name "*.sh" > shell_files.out | |
| shellcheck $(cat shell_files.out) | |
| validate-metadata: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Go | |
| uses: kptdev/porch/.github/actions/setup-go-kpt@main | |
| with: | |
| go-version-file: documentation/go.mod | |
| install-kpt: 'false' | |
| - name: Validate metadata.yaml files | |
| run: make validate-metadata | |
| go-unit-test-ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Go | |
| uses: kptdev/porch/.github/actions/setup-go-kpt@main | |
| with: | |
| go-version-file: documentation/go.mod | |
| install-kpt: 'false' | |
| cache-dependency-path: functions/go/*/go.sum | |
| - name: Run unit tests | |
| run: | | |
| make unit-test | |
| e2e-ci: | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| env: | |
| GOPATH: /home/runner/work/krm-functions-catalog/functions/go | |
| GO111MODULE: on | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Go and install kpt | |
| uses: kptdev/porch/.github/actions/setup-go-kpt@main | |
| with: | |
| go-version-file: functions/go/list-setters/go.mod | |
| cache-dependency-path: functions/go/*/go.sum | |
| - name: Cache golangci-lint | |
| uses: actions/cache@v6 | |
| with: | |
| path: ~/.cache/golangci-lint | |
| key: golangci-lint-${{ hashFiles('functions/go/*/go.sum') }} | |
| restore-keys: golangci-lint- | |
| - name: Install kustomize | |
| uses: syntaqx/setup-kustomize@v1 | |
| with: | |
| kustomize-version: 4.2.0 | |
| - run: kustomize version | |
| - name: Build docker images | |
| run: | | |
| make build | |
| - name: Run all tests | |
| run: | | |
| make e2e-test |