Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
garcanam authored Dec 18, 2024
2 parents e66b324 + 6c9a36e commit bf5718f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased


- Fix Ruby installation with high amount of CPU cores ([#1084](https://github.com/opendevstack/ods-quickstarters/issues/1084))
- Update OS packages by default and bump gitleaks version ([#1049](https://github.com/opendevstack/ods-quickstarters/issues/1049))
- Install java 17 devel only in scala and jdk agents ([#1057](https://github.com/opendevstack/ods-quickstarters/pull/1057))
- Update Angular, Ionic and Typescript Quickstarters ([#1033](https://github.com/opendevstack/ods-quickstarters/issues/1033))
Expand All @@ -26,6 +26,7 @@
- Added new function to cypress to log into applications using MFA ([#1070](https://github.com/opendevstack/ods-quickstarters/pull/1070))
- Removal of deprecated versions ([#1068](https://github.com/opendevstack/ods-quickstarters/issues/1068))
- Generate PDF report for cypress and improved environment management ([#1079](https://github.com/opendevstack/ods-quickstarters/pull/1079))
- Change PDF report zip file name in Cypress Quickstarter ([#1082](https://github.com/opendevstack/ods-quickstarters/pull/1082))
- Mobile testing enablement adding Appium & Sauce Labs in e2e-spock-geb quickstarter ([#1083](https://github.com/opendevstack/ods-quickstarters/pull/1083))

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ RUN cd /opt \
&& git clone https://github.com/rbenv/ruby-build.git /opt/rbenv/plugins/ruby-build \
&& echo 'export PATH="/opt/rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bash_profile \
&& source ~/.bash_profile \
&& rbenv install $RUBY_VERSION \
&& MAKE_OPTS='-j 4' rbenv install $RUBY_VERSION \
&& rbenv global $RUBY_VERSION \
&& gem install bundler -v $BUNDLER_VERSION \
&& RBENV_VERSION=$RUBY_VERSION gem install bundler -v $BUNDLER_VERSION \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ RUN cd /opt \
&& git clone https://github.com/rbenv/ruby-build.git /opt/rbenv/plugins/ruby-build \
&& echo 'export PATH="/opt/rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bash_profile \
&& source ~/.bash_profile \
&& rbenv install $RUBY_VERSION \
&& MAKE_OPTS='-j 4' rbenv install $RUBY_VERSION \
&& rbenv global $RUBY_VERSION \
&& gem install bundler -v $BUNDLER_VERSION \
&& RBENV_VERSION=$RUBY_VERSION gem install bundler -v $BUNDLER_VERSION \
Expand Down
8 changes: 4 additions & 4 deletions e2e-cypress/Jenkinsfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ odsComponentPipeline(
]
)
}
if (fileExists('cypress/pdf.zip')) {
if (fileExists('cypress/cypress-test-reports-pdf.zip')) {
odsComponentStageUploadToNexus(context,
[
distributionFile: 'cypress/pdf.zip',
distributionFile: 'cypress/cypress-test-reports-pdf.zip',
repository: 'leva-documentation',
repositoryType: 'raw',
targetDirectory: "${targetDirectory}"
Expand Down Expand Up @@ -121,8 +121,8 @@ def stageTest(def context) {
}

sh 'npm run generate:pdf'
zip zipFile: 'cypress/pdf.zip', archive: false, dir: 'build/test-results/mochawesome/pdf'
archiveArtifacts artifacts: 'cypress/pdf.zip', fingerprint: true
zip zipFile: 'cypress/cypress-test-reports-pdf.zip', archive: false, dir: 'build/test-results/mochawesome/pdf'
archiveArtifacts artifacts: 'cypress/cypress-test-reports-pdf.zip', fingerprint: true

if (fileExists('cypress/videos')) {
zip zipFile: 'cypress/videos.zip', archive: false, dir: 'cypress/videos'
Expand Down

0 comments on commit bf5718f

Please sign in to comment.