This repository was archived by the owner on Feb 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1180 from pablochacin/manual-e2e-job
Implement manual e2e test job
- Loading branch information
Showing
4 changed files
with
82 additions
and
6 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
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,51 @@ | ||
- job-template: | ||
name: '{name}/e2e-test' | ||
project-type: pipeline | ||
number-to-keep: 30 | ||
days-to-keep: 30 | ||
wrappers: | ||
- timeout: | ||
timeout: 120 | ||
fail: true | ||
parameters: | ||
- string: | ||
name: BRANCH | ||
default: 'master' | ||
description: The branch to checkout | ||
- string: | ||
name: PLATFORM | ||
default: 'vmware' | ||
description: The platform to perform the tests on | ||
- string: | ||
name: E2E_MAKE_TARGET_NAME | ||
default: '' | ||
description: The make target to run (only e2e tests) | ||
- string: | ||
name: KUBERNETES_VERSION | ||
default: '' | ||
description: version of kubernetes to install | ||
- string: | ||
name: WORKER_TYPE | ||
default: '' | ||
description: worker type required by the job | ||
- string: | ||
name: WORKER_LABELS | ||
default: '' | ||
description: additional labels used for worker selection | ||
- string: | ||
name: REPO_BRANCH | ||
default: '' | ||
description: repository branch used for skuba packages | ||
pipeline-scm: | ||
scm: | ||
- git: | ||
url: 'https://github.com/{repo-owner}/{repo-name}.git' | ||
credentials-id: '{repo-credentials}' | ||
refspec: '+refs/heads/*:refs/remotes/origin/* +refs/pull/*/head:refs/remotes/origin/pr/*' | ||
branches: | ||
- '$BRANCH' | ||
browser: auto | ||
suppress-automatic-scm-triggering: true | ||
basedir: skuba | ||
script-path: skuba/ci/jenkins/pipelines/skuba-e2e-test.Jenkinsfile | ||
|