Uploads to bintray

This commit is contained in:
dan@saucelabs.com
2018-06-19 11:59:54 -07:00
parent bb4517024e
commit 051b749db8
3 changed files with 94 additions and 8 deletions
+12 -5
View File
@@ -1,8 +1,5 @@
language: node_js
sudo: false
node_js:
- "7"
- "6"
env:
- CXX=g++-4.8
addons:
@@ -11,5 +8,15 @@ addons:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script:
- npm run generate-docs && npm run test && npm run e2e-test
jobs:
include:
- name: test
node_js:
- "8"
- "7"
script: npm run generate-docs && npm run test && npm run e2e-test
- name: bundle
node_js: 8
# if: branch = master # TODO: Uncomment this
os: osx # Need to have an OSX build to build XCUITestDriver
script: npm install && npm run zip-and-upload
+3 -3
View File
@@ -77,9 +77,9 @@
"generate-docs": "babel-node ./commands-yml/parse.js",
"clean": "rm -rf node_modules && rm -rf package-lock.json && npm install",
"clean:prod": "rm -rf node_modules && rm -rf package-lock.json && npm install --production",
"zip": "zip -r appium.zip .",
"bintray:upload": "echo \"Stub: upload to bintray\"",
"bintray:publish": "echo \"Stub: publish to bintray\""
"zip": "zip -qr appium.zip .",
"upload": "babel-node ./scripts/bintray-upload.js",
"zip-and-upload": "npm run zip && npm run upload"
},
"pre-commit": [
"precommit-msg",
+79
View File
@@ -0,0 +1,79 @@
const request = require('request-promise');
const { logger } = require('appium-support');
const path = require('path');
const fs = require('fs');
let log = logger.getLogger('Bintray');
(async function () {
// Bintray info
// TODO: These should be environment variables
const BINTRAY_USERNAME = process.env.BINTRAY_USERNAME || "dpgraham";
const BINTRAY_API_KEY = process.env.BINTRAY_API_KEY;
const BINTRAY_SUBJECT = process.env.BINTRAY_SUBJECT || 'appium-bintray';
const BINTRAY_REPO = process.env.BINTRAY_REPO || 'AppiumBuilds';
const BINTRAY_PACKAGE = process.env.BINTRAY_PACKAGE || 'AppiumBuild';
const BINTRAY_URL = `https://bintray.com/api/v1`;
// Version info
const COMMIT_SHA = process.env.TRAVIS_COMMIT || (Math.random() + "");
const COMMIT_MESSAGE = process.env.TRAVIS_COMMIT_MESSAGE || 'Some message';
// 1. Create a new 'version' that uses the commit SHA as the name
log.info(`Creating a new Bintray version: ${COMMIT_SHA}`);
const postVersionUrl = `${BINTRAY_URL}/packages/${BINTRAY_SUBJECT}/${BINTRAY_REPO}/${BINTRAY_PACKAGE}/versions`;
log.info(`Using Bintray REST API endpoint ${postVersionUrl}`);
try {
await request.post(postVersionUrl, {
body: {
name: COMMIT_SHA,
desc: COMMIT_MESSAGE,
},
json: true,
auth: {
user: BINTRAY_USERNAME,
pass: BINTRAY_API_KEY,
}
});
} catch (e) {
// 409 means it was created already
if (e.statusCode !== 409) {
log.error(`Failed to create new version ${COMMIT_SHA}. Reason: ${e.error.message}`);
process.exit(-1);
} else {
log.info(`Version ${COMMIT_SHA} was already created. Continuing.`);
}
}
// 2. Upload and publish Appium.zip to Bintray
log.info(`Uploading 'appium.zip' to bintray at version ${COMMIT_SHA}`);
const uploadZipUrl = `${BINTRAY_URL}/content/${BINTRAY_SUBJECT}/${BINTRAY_REPO}/${BINTRAY_PACKAGE}/${COMMIT_SHA}/appium-${COMMIT_SHA}.zip?publish=1&override=1`;
log.info(`Using Bintray REST API upload endpoint ${uploadZipUrl}`);
try {
await request.put(uploadZipUrl, {
formData: {
file: {
value: fs.createReadStream(path.resolve(__dirname, '..', 'appium.zip')),
options: {
filename: 'appium.zip',
contentType: 'application/octet-stream',
},
},
},
auth: {
user: BINTRAY_USERNAME,
pass: BINTRAY_API_KEY,
}
});
} catch (e) {
if (e.statusCode !== 409) {
log.error(`Skipped upload. Upload is already available`);
} else {
log.error(`Failed to publish 'appium.zip' to ${COMMIT_SHA}. Reason: ${JSON.stringify(e)}`);
process.exit(-1);
}
}
log.info(`Done publishing 'appium.zip' to ${COMMIT_SHA}`);
})();