Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-1.13] Make the branch configurable for Serving #180

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ env:
REGISTRY_NAME: registry.local
REGISTRY_PORT: 5000
KO_DOCKER_REPO: registry.local:5000/knative
GOTESTSUM_VERSION: 1.7.0
GOTESTSUM_VERSION: 1.11.0
KAPP_VERSION: 0.46.0
YTT_VERSION: 0.40.1
KO_FLAGS: --platform=linux/amd64
KNATIVE_SERVING_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KNATIVE_DIR: /home/runner/work/serving-progressive-rollout
KNATIVE_SERVING_DIR: /home/runner/work/serving-progressive-rollout/serving
Expand Down Expand Up @@ -66,12 +67,14 @@ jobs:
# Install the latest release of ko
- name: Install ko
uses: ko-build/[email protected]
with:
version: v0.15.2

# Download the latest source code of Knative Serving
- name: Download Knative Serving
run: |
cd ${KNATIVE_DIR}
git clone https://github.com/knative/serving.git "serving"
git clone -b ${KNATIVE_SERVING_BRANCH} --single-branch https://github.com/knative/serving.git

- name: Setup Registry
run: |
Expand Down
Loading