Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added browser tests to windows in CI pipeline #4952

Open
wants to merge 1 commit into
base: master
from
Open
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

added browser tests to windows

  • Loading branch information
mihaiplesa committed Jun 17, 2019
commit df72f5a0ccaf50027a55749d6bf94aed466bd0db
@@ -848,6 +848,25 @@ pipeline {
}
}
}
stage("test-browser") {
steps {
timeout(time: 20, unit: "MINUTES") {
script {
try {
powershell """
\$ErrorActionPreference = "Stop"
npm run test -- brave_browser_tests ${BUILD_TYPE} --output brave_browser_tests.xml
"""
xunit([GoogleTest(deleteOutputFiles: true, failIfNotNew: true, pattern: "src/brave_browser_tests.xml", skipNoTestFiles: false, stopProcessingIfError: true)])
}
catch (ex) {
echo ex.toString()
currentBuild.result = "UNSTABLE"
}
}
}
}
}
stage("dist") {
steps {
powershell """
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.