mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
chore(core): monorepo, esm targeting, improved management (#8707)
This commit is contained in:
25
tools/scripts/travis-scripts/add-publishConfig.js
Executable file
25
tools/scripts/travis-scripts/add-publishConfig.js
Executable file
@ -0,0 +1,25 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
var fsModule = require('fs');
|
||||
|
||||
//Adds a publishConfig section to the package.json file
|
||||
// and sets a tag to it
|
||||
|
||||
var path = './package.json';
|
||||
var fileOptions = {encoding: "utf-8"};
|
||||
var content = fsModule.readFileSync(path, fileOptions);
|
||||
|
||||
var tag = process.argv[2];
|
||||
if (!tag) {
|
||||
console.log('Please pass the tag name as an argument!');
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
var packageDef = JSON.parse(content);
|
||||
if (!packageDef.publishConfig) {
|
||||
packageDef.publishConfig = {};
|
||||
}
|
||||
packageDef.publishConfig.tag = tag;
|
||||
|
||||
var newContent = JSON.stringify(packageDef, null, ' ');
|
||||
fsModule.writeFileSync(path, newContent, fileOptions);
|
26
tools/scripts/travis-scripts/android-wait-for-emulator
Executable file
26
tools/scripts/travis-scripts/android-wait-for-emulator
Executable file
@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Originally written by Ralf Kistner <ralf@embarkmobile.com>, but placed in the public domain
|
||||
# https://github.com/travis-ci/travis-cookbooks/blob/master/community-cookbooks/android-sdk/files/default/android-wait-for-emulator
|
||||
|
||||
set +e
|
||||
|
||||
bootanim=""
|
||||
failcounter=0
|
||||
timeout_in_sec=600 # 10 minutes
|
||||
|
||||
until [[ "$bootanim" =~ "stopped" ]]; do
|
||||
bootanim=`adb -e shell getprop init.svc.bootanim 2>&1 &`
|
||||
if [[ "$bootanim" =~ "device not found" || "$bootanim" =~ "device offline"
|
||||
|| "$bootanim" =~ "running" ]]; then
|
||||
let "failcounter += 1"
|
||||
echo "Waiting for emulator to start"
|
||||
if [[ $failcounter -gt timeout_in_sec ]]; then
|
||||
echo "Timeout ($timeout_in_sec seconds) reached; failed to start emulator"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
sleep 1
|
||||
done
|
||||
|
||||
echo "Emulator is ready"
|
25
tools/scripts/travis-scripts/check-testrun-broken.js
Executable file
25
tools/scripts/travis-scripts/check-testrun-broken.js
Executable file
@ -0,0 +1,25 @@
|
||||
#!/usr/bin/env node
|
||||
var fsModule = require('fs');
|
||||
var resultsFile = 'TestRunResult.txt';
|
||||
var successMarker = /=== ALL TESTS COMPLETE ===/;
|
||||
var passMarker = /=== ALL TESTS COMPLETE ===\s+[^\n]*OK,\s+0\s+failed/mg;
|
||||
|
||||
var messages = {
|
||||
crash: 'TEST RUN CRASHED!',
|
||||
runGood: 'Test run exited successfully',
|
||||
pass: 'NativeScript Cross-Platform Module Tests passed',
|
||||
fail: 'TEST FAILURES FOUND!'
|
||||
};
|
||||
|
||||
var results = fsModule.readFileSync(resultsFile, 'utf-8');
|
||||
|
||||
if (!results.match(successMarker)) {
|
||||
console.log(messages.crash);
|
||||
process.exit(1);
|
||||
} else if (results.match(passMarker)) {
|
||||
console.log(messages.pass);
|
||||
process.exit(0);
|
||||
} else {
|
||||
console.log(messages.fail);
|
||||
process.exit(1);
|
||||
}
|
Reference in New Issue
Block a user