UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 1ba09c45 authored by Ernest Chuang's avatar Ernest Chuang :thinking: Committed by kevin.wilder
Browse files

Resolve "Enable support for gitlab runner tests in Big Bang CI"

parent 408a3010
No related branches found
Tags 0.36.0-bb.2
1 merge request!30Resolve "Enable support for gitlab runner tests in Big Bang CI"
......@@ -35,6 +35,11 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.33.1-bb.3] - 2021-10-20
- changed default variables to match BB CI
- changed timeouts
- dependent on increased limits for gitaly to pass BB CI
## [0.33.1-bb.2] - 2021-10-15
- update readme
- increase CI pipeline test wait time
......
apiVersion: v1
name: gitlab-runner
version: 0.33.1-bb.2
version: 0.33.1-bb.3
appVersion: 14.3.1
description: GitLab Runner
keywords:
......
......@@ -32,13 +32,13 @@ describe('Run Pipeline', () => {
// commit file and start pipeline
cy.get('button[id="commit-changes"]').click()
// wait 10 seconds for pipeline to get started
cy.wait(10000)
// wait 9 seconds for pipeline to get started
cy.wait(9000)
// Go to pipelines page
cy.visit('/'+Cypress.env('gitlab_username')+'/'+Cypress.env('gitlab_project')+'/-/pipelines')
// Wait 30 seconds for pipeline to run and pass
cy.wait(40000)
cy.wait(30000)
cy.get('a[id="js-code-quality-walkthrough"]').first().contains('passed')
})
})
......@@ -15,12 +15,12 @@ bbtests:
artifacts: true
envs:
cypress_baseUrl: http://gitlab-webservice-default.gitlab.svc.cluster.local:8181
cypress_gitlab_first_name: "test"
cypress_gitlab_last_name: "user"
cypress_gitlab_username: "testuser"
cypress_gitlab_password: "12345678"
cypress_gitlab_email: "testuser@example.com"
cypress_gitlab_project: "my-awesome-project"
cypress_gitlab_first_name: "testrunner"
cypress_gitlab_last_name: "userrunner"
cypress_gitlab_username: "gitlabrunner_user"
cypress_gitlab_password: "gitlabrunner_pass"
cypress_gitlab_email: "gitlab@bigbang.dev"
cypress_gitlab_project: "runner-hello-world"
secretEnvs:
- name: cypress_adminpassword
valueFrom:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment