[ci] ship Jest unit test junit with runbld in jest worker (#97197)

Co-authored-by: Brian Seeders <seeders@gmail.com>
Co-authored-by: spalger <spalger@users.noreply.github.com>
This commit is contained in:
Spencer 2021-04-15 17:13:38 -07:00 committed by GitHub
parent 689c4d40cd
commit 9d0b495a30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -468,7 +468,13 @@ def allCiTasks() {
},
jest: {
workers.ci(name: 'jest', size: 'n2-standard-16', ramDisk: false) {
scriptTask('Jest Unit Tests', 'test/scripts/test/jest_unit.sh')()
catchErrors {
scriptTask('Jest Unit Tests', 'test/scripts/test/jest_unit.sh')()
}
catchErrors {
runbld.junit()
}
}
},
])