This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file contains the list of "job flags"/"try flags" for tests and builds. | |
--- | |
# List of all possible flags for each category of tests used in the case where | |
# "all" is specified. | |
flags: | |
builds: | |
- emulator | |
- emulator-jb | |
- emulator-kk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"provisionerId": "no-provisioning-nope", | |
"retries": 1, | |
"payload": { | |
"image": "taskcluster/test-ubuntu", | |
"maxRunTime": 600, | |
"command": [ | |
"/bin/bash", | |
"-c", | |
"echo $PRIVATE_VAR" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
suite('Invalid payload schema', function() { | |
var co = require('co'); | |
var testworker = require('../post_task'); | |
var cmd = require('./helper/cmd'); | |
test('invalid schema', co(function* () { | |
var result = yield testworker({ | |
payload: { | |
image: 'taskcluster/test-ubuntu', | |
// No command is an invalid schema. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"provisionerId": "aws-provisioner-v1", | |
"workerType": "testdroid-device", | |
"schedulerId": "task-graph-scheduler", | |
"taskGroupId": "-jkXrNuZSDaxUOTJAonaBA", | |
"routes": [ | |
"tc-treeherder-stage.b2g-inbound.8ffeb1702fd76f8752ece76b3ab0dde36b54f08f" | |
], | |
"retries": 5, | |
"created": "2015-05-14T11:06:06.261Z", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Container ID: d43c0e72caf7af1eb750065d9532d11a6402d34dd68627bf91e24024d4b40a06 | |
IP: 172.17.0.40 | |
Port: 49167 | |
Trying with token... | |
404 page not found | |
Trying without token... | |
test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import assert from 'assert'; | |
import DockerWorker from '../dockerworker'; | |
import TestWorker from '../testworker'; | |
let worker; | |
suite('use dind-service', () => { | |
setup(async () => { | |
worker = new TestWorker(DockerWorker); | |
await worker.launch(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ mach taskcluster-jobs | |
[ | |
"linux64_gecko alder opt build", | |
"linux64_gecko alder opt test gaia-build-unit", | |
"linux64_gecko alder opt test gaia-unit", | |
"linux64_gecko alder opt test gaia-linter", | |
"linux64_gecko alder opt test gaia-build", | |
"linux64_gecko alder opt test gaia-js-integration", | |
"linux64_gecko alder opt test gaia-js-integration-1", | |
"linux64_gecko alder opt test gaia-js-integration-2", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import request from 'superagent-promise'; | |
import taskcluster from 'taskcluster-client'; | |
import slugid from 'slugid'; | |
import fs from 'mz/fs'; | |
async () => { | |
let queue = new taskcluster.Queue(); | |
let taskDef = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import request from 'superagent-promise'; | |
import taskcluster from 'taskcluster-client'; | |
import slugid from 'slugid'; | |
import fs from 'mz/fs'; | |
async () => { | |
let queue = new taskcluster.Queue(); | |
let taskDef = { | |
provisionerId: 'no-provisioner', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/test/integration/device_link_test.js b/test/integration/device_link_test.js | |
index 1fd98ae..b3c5ff8 100644 | |
--- a/test/integration/device_link_test.js | |
+++ b/test/integration/device_link_test.js | |
@@ -82,24 +82,25 @@ suite('device linking within containers', () => { | |
let result = await worker.postToQueue(task); | |
assert.equal(result.status.state, 'completed', 'Task state is not marked as completed'); | |
assert.equal( | |
result.run.reasonResolved, |
OlderNewer