Skip to content

Commit

Permalink
RHTAP-3056 GitLab CI tests
Browse files Browse the repository at this point in the history
Signed-off-by: Josef Kopriva <[email protected]>
  • Loading branch information
jkopriva committed Oct 18, 2024
1 parent 7e7db64 commit 745a31e
Show file tree
Hide file tree
Showing 21 changed files with 736 additions and 31 deletions.
12 changes: 11 additions & 1 deletion default.env
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,14 @@ export JENKINS_USERNAME=''
# Jenkins API Token
# Required: no (by default testing on Jenkins is disabled)
# Example: 112b49e9....
export JENKINS_TOKEN=''
export JENKINS_TOKEN=''

# Quay Username - needed for GitLab CI, GitHub Actions
# Required: no (by default testing on Jenkins is disabled)
# Example: admin-admin-edit-view
export QUAY_USERNAME=''

# Quay Password - needed for GitLab CI, GitHub Actions
# Required: no (by default testing on Jenkins is disabled)
# Example: 112b49e9....
export QUAY_PASSWORD=""
2 changes: 2 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = {
active: true,
tekton: true,
jenkins: false,
actions: false,
host: 'https://api.github.com',
registriesConfig: {
quay: {
Expand All @@ -24,6 +25,7 @@ module.exports = {
active: true,
tekton: true,
jenkins: false,
gitlabci: false,
host: 'https://gitlab.com',
registriesConfig: {
quay: {
Expand Down
1 change: 0 additions & 1 deletion src/apis/ci/jenkins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export class JenkinsCI extends Utils {
*/
constructor(jenkinsURL: string, jenkinsUsername: string, jenkinsToken: string) {
super();

this.jenkinsUrl = jenkinsURL;
this.jenkinsUsername = jenkinsUsername;
this.jenkinsApiToken = jenkinsToken;
Expand Down
Loading

0 comments on commit 745a31e

Please sign in to comment.