Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions test/config.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export PIPELINES=v0.28.2
export TRIGGERS=v0.16.1
export RESULTS=v0.1.1
export DASHBOARD=v0.21.0
11 changes: 11 additions & 0 deletions test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,19 @@
# Helper functions for E2E tests.

source $(dirname $0)/../vendor/github.com/tektoncd/plumbing/scripts/e2e-tests.sh
source $(dirname $0)/config.sh

function install_operator_resources() {

echo :Payload Targets:
echo Pipelines: ${PIPELINES}
echo Triggers: ${TRIGGERS}
if [[ ${TARGET} != "openshift" ]]; then
echo Results: ${RESULTS}
echo Dashboard: ${DASHBOARD}
fi
echo '------------------------------'

echo ">> Deploying Tekton Operator Resources"

make TARGET=${TARGET:-kubernetes} apply || fail_test "Tekton Operator installation failed"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ type LRUCache interface {
// Clears all cache entries.
Purge()

// Resizes cache, returning number evicted
Resize(int) int
// Resizes cache, returning number evicted
Resize(int) int
}