Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nfs-subdir-external-provisioner
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rancher商店
nfs-subdir-external-provisioner
Commits
4aff857d
Unverified
Commit
4aff857d
authored
Oct 27, 2020
by
Kubernetes Prow Robot
Committed by
GitHub
Oct 27, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #109 from pohly/alpha-test-defaults
prow.sh: only run alpha tests for latest Kubernetes release
parents
0427289d
522361ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
prow.sh
prow.sh
+6
-1
No files found.
prow.sh
View file @
4aff857d
...
@@ -248,11 +248,16 @@ configvar CSI_PROW_DEP_VERSION v0.5.1 "golang dep version to be used for vendor
...
@@ -248,11 +248,16 @@ configvar CSI_PROW_DEP_VERSION v0.5.1 "golang dep version to be used for vendor
#
#
# Unknown or unsupported entries are ignored.
# Unknown or unsupported entries are ignored.
#
#
# Testing of alpha features is only supported for CSI_PROW_KUBERNETES_VERSION=latest
# because CSI_PROW_E2E_ALPHA and CSI_PROW_E2E_ALPHA_GATES are not set for
# older Kubernetes releases. The script supports that, it just isn't done because
# it is not needed and would cause additional maintenance effort.
#
# Sanity testing with csi-sanity only covers the CSI driver itself and
# Sanity testing with csi-sanity only covers the CSI driver itself and
# thus only makes sense in repos which provide their own CSI
# thus only makes sense in repos which provide their own CSI
# driver. Repos can enable sanity testing by setting
# driver. Repos can enable sanity testing by setting
# CSI_PROW_TESTS_SANITY=sanity.
# CSI_PROW_TESTS_SANITY=sanity.
configvar CSI_PROW_TESTS
"unit parallel serial
parallel-alpha serial-alpha
sanity"
"tests to run"
configvar CSI_PROW_TESTS
"unit parallel serial
$(if
[
"
${
CSI_PROW_KUBERNETES_VERSION
}
"
=
"latest"
]
;
then
echo
parallel-alpha serial-alpha
;
fi)
sanity"
"tests to run"
tests_enabled
()
{
tests_enabled
()
{
local
t1 t2
local
t1 t2
# We want word-splitting here, so ignore: Quote to prevent word splitting, or split robustly with mapfile or read -a.
# We want word-splitting here, so ignore: Quote to prevent word splitting, or split robustly with mapfile or read -a.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment