This repository has been archived by the owner on Sep 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for git commit sha (#587)
* Add support for git commit sha copying solution from tektoncd pipeline: tektoncd/pipeline#555 Credit to @dibbles on the original PR * Add verification of default SA creation in e2e - Previous e2e test failed as namespace did not have default SA. Now the test setup verifies this exists
- Loading branch information
1 parent
dd3ceb3
commit 9bc0e35
Showing
3 changed files
with
55 additions
and
5 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
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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2019 The Knative 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. | ||
apiVersion: build.knative.dev/v1alpha1 | ||
kind: Build | ||
metadata: | ||
name: test-git-commitid | ||
labels: | ||
expect: succeeded | ||
spec: | ||
source: | ||
git: | ||
url: https://github.com/bazelbuild/rules_docker | ||
revision: 4025a58c156a4ba0fd3606df50051423043495bf | ||
template: | ||
name: dump-workspace-template |