Update a few more Circle jobs that changed their artifacts (#5454)

* grab binary and npm package from workspace

* update test-binary-against-kitchensink

* try installing several times

* update test-npm-module-and-verify-binary

* update test-binary-and-npm-against-other-projects job

* run test job after upload jobs

* update urls

* use current folder path
This commit is contained in:
Gleb Bahmutov
2019-10-24 14:17:01 -04:00
committed by GitHub
parent 6cbb913f76
commit 1231417f49
2 changed files with 40 additions and 31 deletions
+4
View File
@@ -18,6 +18,8 @@ function getNameAndBinary (args = process.argv) {
console.log('loading NPM url from', options.npm)
npm = require(path.resolve(options.npm)).url
la(is.url(npm), 'not an url', npm)
} else {
console.log('NPM option "%s" is not a file', options.npm)
}
let binary = options.binary
@@ -26,6 +28,8 @@ function getNameAndBinary (args = process.argv) {
console.log('loading binary url from', options.binary)
binary = require(path.resolve(options.binary)).url
la(is.url(binary), 'not an url', binary)
} else {
console.log('binary option "%s" is not a file', options.binary)
}
return {