Merge pull request #1744 from dprince/ovn_minor_update_check #887
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
| name: Kustomize Build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - config/samples/** | |
| jobs: | |
| kustomize: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.24.x | |
| - uses: actions/checkout@v4 | |
| with: | |
| # this fetches all branches. Needed because we need gh-pages branch for deploy to work | |
| fetch-depth: 0 | |
| - name: download kustomize | |
| run: | | |
| mkdir bin | |
| LINK=https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh | |
| curl -Ss $LINK | bash -s -- 5.0.1 ./bin | |
| - name: kustomize build | |
| run: | | |
| cd config/samples/dataplane | |
| for d in */ ; do | |
| echo "=============== $d ===============" | |
| ../../../bin/kustomize build --load-restrictor LoadRestrictionsNone "$d" | |
| done |