Add --node-selector
Flag for shp build/buildrun
Commands
#720
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
--- | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
name: End-to-End (E2E) Tests | |
jobs: | |
test-e2e: | |
strategy: | |
fail-fast: false | |
matrix: | |
kubernetes: | |
- v1.29.8 | |
- v1.31.0 | |
max-parallel: 2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Go and ko | |
uses: ./.github/actions/setup | |
- uses: helm/kind-action@v1 | |
with: | |
version: v0.24.0 | |
node_image: kindest/node:${{ matrix.kubernetes }} | |
cluster_name: kind | |
config: test/kind/config.yaml | |
wait: 120s | |
- uses: shipwright-io/setup@v1 | |
with: | |
tekton-version: v0.56.8 | |
shipwright-ref: main | |
cli-ref: _ignore | |
- name: CLI Build (shp) | |
run: make build | |
- name: End-to-End Tests | |
run: make test-e2e | |
- name: Pods | |
if: ${{ failure() }} | |
run: | | |
echo "# Pods:" | |
kubectl get pod -A -o yaml |