├── .gitignore ├── .taskcluster.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gulpfile.js ├── layout ├── followup.pug ├── footer.pug ├── head.pug ├── layout.pug ├── navbar.pug ├── pager.pug ├── reference.pug ├── schema.pug └── sidebar.pug ├── lib ├── filter.js ├── headers.js ├── make-redirects.js ├── navlinks.js ├── nginx-site.conf.ejs ├── pug.js ├── raw.js ├── render-schemas.js ├── s3.js ├── static.js ├── sts.js ├── userlist.js └── utils.js ├── package.json ├── redirects.yml ├── src ├── assets │ ├── JSONFormatter │ │ ├── JSONFormatter.css │ │ ├── JSONFormatter.js │ │ ├── Minus.png │ │ └── Plus.png │ ├── ace │ │ ├── ace.js │ │ ├── mode-javascript.js │ │ ├── mode-json.js │ │ ├── mode-markdown.js │ │ ├── mode-sh.js │ │ ├── theme-github.js │ │ ├── worker-javascript.js │ │ └── worker-json.js │ ├── anchorjs.min.js │ ├── bookworm-penguin.svg │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ └── bootstrap.min.js │ ├── bundle.js │ ├── ejs_production.js │ ├── favicon.ico │ ├── jquery.min.js │ ├── jsonform.js │ ├── marked.js │ ├── principles.svg │ ├── prism.css │ ├── promise.js │ ├── raphael-min.js │ ├── sequence-diagram-min.js │ ├── style.css │ ├── task-graph-inspector │ │ └── task-node.ejs │ ├── taskcluster-180.png │ ├── taskcluster-36.png │ ├── taskcluster.svg │ ├── tools-taskcluster-net-thumbnail.png │ └── underscore-min.js ├── error.md ├── index.md ├── manual │ ├── design │ │ ├── apis │ │ │ ├── errors.md │ │ │ ├── hawk │ │ │ │ ├── authn.md │ │ │ │ ├── authorized-scopes.md │ │ │ │ ├── clients.md │ │ │ │ ├── index.md │ │ │ │ ├── roles.md │ │ │ │ ├── scopes.md │ │ │ │ ├── signed-urls.md │ │ │ │ ├── temporary-credentials.md │ │ │ │ └── troubleshooting.md │ │ │ ├── index.md │ │ │ ├── pulse.md │ │ │ └── reference-format.md │ │ ├── devel │ │ │ ├── best-practices │ │ │ │ ├── commits.md │ │ │ │ ├── index.md │ │ │ │ ├── libraries.md │ │ │ │ ├── microservices.md │ │ │ │ ├── scopes.md │ │ │ │ └── testing.md │ │ │ ├── idempotency.md │ │ │ ├── index.md │ │ │ ├── principles.md │ │ │ └── rfcs.md │ │ ├── env-vars.md │ │ ├── index.md │ │ └── namespaces.md │ ├── index.md │ ├── task-execution │ │ ├── index.md │ │ ├── provisioning.md │ │ ├── queues.md │ │ ├── worker-types.md │ │ └── workers.md │ ├── tasks │ │ ├── artifacts.md │ │ ├── dependencies.md │ │ ├── index.md │ │ ├── manipulating.md │ │ ├── messages.md │ │ ├── priority.md │ │ ├── runs.md │ │ ├── scopes.md │ │ ├── taskgroupid-schedulerid.md │ │ ├── times.md │ │ └── workertypes.md │ └── using │ │ ├── actions │ │ ├── guidelines.md │ │ ├── index.md │ │ ├── spec.md │ │ └── ui.md │ │ ├── administration.md │ │ ├── artifacts.md │ │ ├── caching.md │ │ ├── github.md │ │ ├── handling-high-load.md │ │ ├── index.md │ │ ├── indexing.md │ │ ├── integration │ │ ├── backend.md │ │ ├── frontend.md │ │ ├── guidelines.md │ │ ├── index.md │ │ ├── libraries.md │ │ └── pulse.md │ │ ├── s3-uploads.md │ │ ├── scheduled-tasks.md │ │ ├── secrets.md │ │ ├── task-graph.md │ │ └── task-notifications.md ├── people.pug ├── presentations │ ├── TC-101 │ │ ├── index.html │ │ └── slides │ │ │ ├── developer_workflow │ │ │ ├── common_problems.md │ │ │ ├── decision_task.md │ │ │ ├── docker_tips.md │ │ │ ├── how_did_those_jobs.md │ │ │ ├── images │ │ │ │ ├── interactive.png │ │ │ │ ├── run_locally.png │ │ │ │ ├── task_inspector_failed_task.png │ │ │ │ ├── treeherder.png │ │ │ │ ├── treeherder1.png │ │ │ │ └── treeherder_job_details_annotation.png │ │ │ ├── run_locally.md │ │ │ ├── run_locally_environment.md │ │ │ ├── struggle_intro.md │ │ │ ├── task_failed.md │ │ │ ├── task_inspector_edit_task.md │ │ │ ├── task_interactive.md │ │ │ ├── treeherder.md │ │ │ ├── treeherder_job_details.md │ │ │ └── workflow.md │ │ │ ├── end.md │ │ │ ├── high-level-arch.md │ │ │ ├── migration-roadmap.md │ │ │ ├── tc-roadmap.md │ │ │ ├── team.md │ │ │ ├── what-is-task.md │ │ │ ├── what-is-tc.md │ │ │ └── why-tc.md │ ├── TC-102 │ │ ├── index.html │ │ └── slides │ │ │ ├── end.md │ │ │ ├── hooks │ │ │ ├── 00-frontpage.md │ │ │ ├── 01-cron.md │ │ │ ├── 02-creating.md │ │ │ └── 03-scopes.md │ │ │ ├── intree-config │ │ │ ├── 00-frontpage.md │ │ │ ├── 01-taskcluster.md │ │ │ ├── 02-overview.md │ │ │ ├── 03-scopes.md │ │ │ ├── 04-routes.md │ │ │ ├── 05-treeherder.md │ │ │ ├── 06-payload.md │ │ │ ├── 07-branch.md │ │ │ ├── 08-branch.md │ │ │ ├── 09-running.md │ │ │ └── images │ │ │ │ └── treeherder.jpg │ │ │ ├── intree-image │ │ │ ├── 00-frontpage.md │ │ │ ├── 01-docker-image.md │ │ │ ├── 02-task-image.md │ │ │ ├── 03-image-workflow.md │ │ │ ├── 04-task-definition.md │ │ │ ├── 05-dockerfile-before.md │ │ │ ├── 06-dockerfile-after.md │ │ │ ├── 07-example-push.md │ │ │ ├── 08-treeherder1.md │ │ │ ├── 09-treeherder2.md │ │ │ ├── 10-treeherder3.md │ │ │ └── images │ │ │ │ ├── decision_task.png │ │ │ │ ├── dependent_tasks.png │ │ │ │ └── image_task.png │ │ │ ├── provisioner │ │ │ ├── 00-frontpage.md │ │ │ ├── 01-overview.md │ │ │ ├── 02-provisioning-algorithm.md │ │ │ ├── 03-provisioning-bidding.md │ │ │ ├── 04-killing.md │ │ │ └── 05-breakage.md │ │ │ ├── secrets │ │ │ ├── 00-frontpage.md │ │ │ ├── 01-options.md │ │ │ └── 02-api.md │ │ │ ├── tc-clients │ │ │ ├── 00.md │ │ │ ├── 01.md │ │ │ ├── 02.md │ │ │ ├── 03.md │ │ │ ├── 04.md │ │ │ ├── 05.md │ │ │ ├── 06.md │ │ │ ├── 07.md │ │ │ ├── 08.md │ │ │ ├── 09.md │ │ │ ├── 10.md │ │ │ ├── 11.md │ │ │ ├── 12.md │ │ │ ├── 13.md │ │ │ ├── 14.md │ │ │ ├── 15.md │ │ │ ├── 16.md │ │ │ ├── 17.md │ │ │ ├── 18.md │ │ │ ├── 19.md │ │ │ ├── 20.md │ │ │ └── 21.md │ │ │ ├── tcgh │ │ │ ├── 00-frontpage.md │ │ │ ├── 01-tcgh.md │ │ │ └── 02-tcrc.md │ │ │ └── test.py │ ├── TC-201 │ │ ├── index.html │ │ └── slides │ │ │ ├── auth.md │ │ │ ├── components.md │ │ │ ├── docker-worker-artifact.md │ │ │ ├── docker-worker-interactive.md │ │ │ ├── docker-worker-livelog.md │ │ │ ├── docker-worker.md │ │ │ ├── docker.md │ │ │ ├── end.md │ │ │ ├── self-serve.md │ │ │ ├── service-design.md │ │ │ ├── star-scopes.md │ │ │ ├── worker-life-cycle.md │ │ │ └── worker-types.md │ ├── in-tree-taskgraphs │ │ ├── CHANGELOG.md │ │ ├── MIT-license.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── core │ │ │ ├── deck.core.css │ │ │ ├── deck.core.js │ │ │ ├── deck.core.scss │ │ │ ├── print.css │ │ │ └── print.scss │ │ ├── extensions │ │ │ ├── goto │ │ │ │ ├── deck.goto.css │ │ │ │ ├── deck.goto.html │ │ │ │ ├── deck.goto.js │ │ │ │ └── deck.goto.scss │ │ │ ├── menu │ │ │ │ ├── deck.menu.css │ │ │ │ ├── deck.menu.js │ │ │ │ └── deck.menu.scss │ │ │ ├── navigation │ │ │ │ ├── deck.navigation.css │ │ │ │ ├── deck.navigation.html │ │ │ │ ├── deck.navigation.js │ │ │ │ └── deck.navigation.scss │ │ │ ├── scale │ │ │ │ ├── deck.scale.css │ │ │ │ ├── deck.scale.js │ │ │ │ └── deck.scale.scss │ │ │ └── status │ │ │ │ ├── deck.status.css │ │ │ │ ├── deck.status.html │ │ │ │ ├── deck.status.js │ │ │ │ └── deck.status.scss │ │ ├── index.html │ │ ├── introduction │ │ │ └── index.html │ │ ├── jquery.min.js │ │ ├── kinds.svg │ │ ├── modernizr.custom.js │ │ ├── test │ │ │ ├── fixtures │ │ │ │ ├── empty.html │ │ │ │ ├── nesteds.html │ │ │ │ └── standard.html │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine-jquery.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ │ ├── settings.js │ │ │ ├── spec.core.js │ │ │ ├── spec.goto.js │ │ │ ├── spec.menu.js │ │ │ ├── spec.navigation.js │ │ │ ├── spec.scale.js │ │ │ └── spec.status.js │ │ ├── themes │ │ │ ├── style │ │ │ │ ├── _reset.scss │ │ │ │ ├── neon.css │ │ │ │ ├── neon.scss │ │ │ │ ├── swiss.css │ │ │ │ ├── swiss.scss │ │ │ │ ├── web-2.0.css │ │ │ │ └── web-2.0.scss │ │ │ └── transition │ │ │ │ ├── fade.css │ │ │ │ ├── fade.scss │ │ │ │ ├── horizontal-slide.css │ │ │ │ ├── horizontal-slide.scss │ │ │ │ ├── vertical-slide.css │ │ │ │ └── vertical-slide.scss │ │ └── try-D.png │ ├── index.md │ ├── intro-talk │ │ ├── api-setup.svg │ │ ├── artifact-upload-2.svg │ │ ├── artifact-upload.svg │ │ ├── azure-table.svg │ │ ├── bb-world.svg │ │ ├── code-focus.js │ │ ├── index.html │ │ ├── interactive.svg │ │ ├── layers.svg │ │ ├── layers1.svg │ │ ├── life-cycle-2-svg.svg │ │ ├── life-cycle-2.svg │ │ ├── life-cycle.svg │ │ ├── livelog-redirect.svg │ │ ├── livelog-redirect2.svg │ │ ├── median-pending-time.png │ │ ├── overview.svg │ │ ├── overview2.svg │ │ ├── overview3.svg │ │ ├── overview4.svg │ │ ├── scope-assignment.svg │ │ ├── scopes-client-error.svg │ │ ├── scopes-client-kleene.svg │ │ ├── scopes-client.svg │ │ ├── self-serve-use.svg │ │ ├── slides │ │ │ ├── auth.md │ │ │ ├── components.md │ │ │ ├── docker-worker-artifact.md │ │ │ ├── docker-worker-interactive.md │ │ │ ├── docker-worker-livelog.md │ │ │ ├── docker-worker.md │ │ │ ├── docker.md │ │ │ ├── end.md │ │ │ ├── self-serve.md │ │ │ ├── service-design.md │ │ │ ├── star-scopes.md │ │ │ ├── stats.md │ │ │ ├── task-graph.md │ │ │ ├── task.md │ │ │ ├── why.md │ │ │ ├── worker-life-cycle.md │ │ │ └── worker-types.md │ │ ├── task.svg │ │ ├── task2.svg │ │ └── tc-world.svg │ ├── intro │ │ ├── index.html │ │ ├── layers.svg │ │ ├── layers1.svg │ │ ├── overview.svg │ │ ├── overview2.svg │ │ ├── overview3.svg │ │ ├── overview4.svg │ │ └── task.svg │ ├── reveal │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ ├── print │ │ │ │ ├── paper.css │ │ │ │ └── pdf.css │ │ │ ├── reveal.css │ │ │ ├── reveal.scss │ │ │ └── theme │ │ │ │ ├── README.md │ │ │ │ ├── beige.css │ │ │ │ ├── black.css │ │ │ │ ├── blood.css │ │ │ │ ├── league.css │ │ │ │ ├── moon.css │ │ │ │ ├── night.css │ │ │ │ ├── serif.css │ │ │ │ ├── simple.css │ │ │ │ ├── sky.css │ │ │ │ ├── solarized.css │ │ │ │ ├── source │ │ │ │ ├── beige.scss │ │ │ │ ├── black.scss │ │ │ │ ├── blood.scss │ │ │ │ ├── league.scss │ │ │ │ ├── moon.scss │ │ │ │ ├── night.scss │ │ │ │ ├── serif.scss │ │ │ │ ├── simple.scss │ │ │ │ ├── sky.scss │ │ │ │ ├── solarized.scss │ │ │ │ └── white.scss │ │ │ │ ├── template │ │ │ │ ├── mixins.scss │ │ │ │ ├── settings.scss │ │ │ │ └── theme.scss │ │ │ │ └── white.css │ │ ├── js │ │ │ └── reveal.js │ │ ├── lib │ │ │ ├── css │ │ │ │ └── zenburn.css │ │ │ ├── font │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ └── league-gothic.woff │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ └── source-sans-pro.css │ │ │ └── js │ │ │ │ ├── classList.js │ │ │ │ ├── head.min.js │ │ │ │ └── html5shiv.js │ │ ├── plugin │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── leap │ │ │ │ └── leap.js │ │ │ ├── markdown │ │ │ │ ├── example.html │ │ │ │ ├── example.md │ │ │ │ ├── markdown.js │ │ │ │ └── marked.js │ │ │ ├── math │ │ │ │ └── math.js │ │ │ ├── multiplex │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── master.js │ │ │ ├── notes-server │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── notes.html │ │ │ ├── notes │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ │ ├── print-pdf │ │ │ │ └── print-pdf.js │ │ │ ├── remotes │ │ │ │ └── remotes.js │ │ │ ├── search │ │ │ │ └── search.js │ │ │ └── zoom-js │ │ │ │ └── zoom.js │ │ └── test │ │ │ ├── examples │ │ │ ├── assets │ │ │ │ ├── image1.png │ │ │ │ └── image2.png │ │ │ ├── barebones.html │ │ │ ├── embedded-media.html │ │ │ ├── math.html │ │ │ └── slide-backgrounds.html │ │ │ ├── qunit-1.12.0.css │ │ │ ├── qunit-1.12.0.js │ │ │ ├── test-markdown-element-attributes.html │ │ │ ├── test-markdown-element-attributes.js │ │ │ ├── test-markdown-slide-attributes.html │ │ │ ├── test-markdown-slide-attributes.js │ │ │ ├── test-markdown.html │ │ │ ├── test-markdown.js │ │ │ ├── test-pdf.html │ │ │ ├── test-pdf.js │ │ │ ├── test.html │ │ │ └── test.js │ ├── scopes │ │ ├── createTask.png │ │ └── index.html │ ├── taskcluster-120.png │ └── try-with-taskcluster │ │ ├── images │ │ ├── decision_task.png │ │ ├── dependent_tasks.png │ │ ├── image_task.png │ │ ├── inspect-task.png │ │ ├── novnc.png │ │ ├── shell.png │ │ └── task-inspector.png │ │ ├── index.html │ │ └── slides │ │ ├── display.md │ │ ├── end.md │ │ ├── example_build.md │ │ ├── further_reading_task_images.md │ │ ├── image_dockerfile_after.md │ │ ├── image_dockerfile_before.md │ │ ├── image_workflow.md │ │ ├── interactive.md │ │ ├── shell.md │ │ ├── task_images.md │ │ ├── treeherder1.md │ │ ├── treeherder2.md │ │ └── treeherder3.md ├── reference │ ├── core │ │ └── index.md │ ├── guide.md │ ├── index.md │ ├── integrations │ │ └── index.md │ ├── libraries │ │ └── index.md │ ├── operations │ │ └── index.md │ ├── platform │ │ └── index.md │ └── workers │ │ └── index.md ├── resources.md └── tutorial │ ├── apis.md │ ├── authenticate.md │ ├── create-task-via-api.md │ ├── debug-task.md │ ├── download-task-artifacts.md │ ├── finding-tasks.md │ ├── gecko-decision-task.md │ ├── gecko-docker-images.md │ ├── gecko-new-job.md │ ├── gecko-task-graph-howto.md │ ├── gecko-task-graph.md │ ├── gecko-tasks.md │ ├── hack-tc.md │ ├── hello-world.md │ ├── index.md │ ├── monitor-task-status.md │ ├── reviews.md │ └── what-is-tc.md ├── util └── taskcluster-build.sh └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.taskcluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/.taskcluster.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/gulpfile.js -------------------------------------------------------------------------------- /layout/followup.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/layout/followup.pug -------------------------------------------------------------------------------- /layout/footer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/layout/footer.pug -------------------------------------------------------------------------------- /layout/head.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/layout/head.pug -------------------------------------------------------------------------------- /layout/layout.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/layout/layout.pug -------------------------------------------------------------------------------- /layout/navbar.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/layout/navbar.pug -------------------------------------------------------------------------------- /layout/pager.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/layout/pager.pug -------------------------------------------------------------------------------- /layout/reference.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/layout/reference.pug -------------------------------------------------------------------------------- /layout/schema.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/layout/schema.pug -------------------------------------------------------------------------------- /layout/sidebar.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/layout/sidebar.pug -------------------------------------------------------------------------------- /lib/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/filter.js -------------------------------------------------------------------------------- /lib/headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/headers.js -------------------------------------------------------------------------------- /lib/make-redirects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/make-redirects.js -------------------------------------------------------------------------------- /lib/navlinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/navlinks.js -------------------------------------------------------------------------------- /lib/nginx-site.conf.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/nginx-site.conf.ejs -------------------------------------------------------------------------------- /lib/pug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/pug.js -------------------------------------------------------------------------------- /lib/raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/raw.js -------------------------------------------------------------------------------- /lib/render-schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/render-schemas.js -------------------------------------------------------------------------------- /lib/s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/s3.js -------------------------------------------------------------------------------- /lib/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/static.js -------------------------------------------------------------------------------- /lib/sts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/sts.js -------------------------------------------------------------------------------- /lib/userlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/userlist.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/package.json -------------------------------------------------------------------------------- /redirects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/redirects.yml -------------------------------------------------------------------------------- /src/assets/JSONFormatter/JSONFormatter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/JSONFormatter/JSONFormatter.css -------------------------------------------------------------------------------- /src/assets/JSONFormatter/JSONFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/JSONFormatter/JSONFormatter.js -------------------------------------------------------------------------------- /src/assets/JSONFormatter/Minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/JSONFormatter/Minus.png -------------------------------------------------------------------------------- /src/assets/JSONFormatter/Plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/JSONFormatter/Plus.png -------------------------------------------------------------------------------- /src/assets/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/ace/ace.js -------------------------------------------------------------------------------- /src/assets/ace/mode-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/ace/mode-javascript.js -------------------------------------------------------------------------------- /src/assets/ace/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/ace/mode-json.js -------------------------------------------------------------------------------- /src/assets/ace/mode-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/ace/mode-markdown.js -------------------------------------------------------------------------------- /src/assets/ace/mode-sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/ace/mode-sh.js -------------------------------------------------------------------------------- /src/assets/ace/theme-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/ace/theme-github.js -------------------------------------------------------------------------------- /src/assets/ace/worker-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/ace/worker-javascript.js -------------------------------------------------------------------------------- /src/assets/ace/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/ace/worker-json.js -------------------------------------------------------------------------------- /src/assets/anchorjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/anchorjs.min.js -------------------------------------------------------------------------------- /src/assets/bookworm-penguin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/bookworm-penguin.svg -------------------------------------------------------------------------------- /src/assets/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/assets/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/assets/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/assets/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/assets/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/assets/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/assets/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/bundle.js -------------------------------------------------------------------------------- /src/assets/ejs_production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/ejs_production.js -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/jquery.min.js -------------------------------------------------------------------------------- /src/assets/jsonform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/jsonform.js -------------------------------------------------------------------------------- /src/assets/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/marked.js -------------------------------------------------------------------------------- /src/assets/principles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/principles.svg -------------------------------------------------------------------------------- /src/assets/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/prism.css -------------------------------------------------------------------------------- /src/assets/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/promise.js -------------------------------------------------------------------------------- /src/assets/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/raphael-min.js -------------------------------------------------------------------------------- /src/assets/sequence-diagram-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/sequence-diagram-min.js -------------------------------------------------------------------------------- /src/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/style.css -------------------------------------------------------------------------------- /src/assets/task-graph-inspector/task-node.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/task-graph-inspector/task-node.ejs -------------------------------------------------------------------------------- /src/assets/taskcluster-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/taskcluster-180.png -------------------------------------------------------------------------------- /src/assets/taskcluster-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/taskcluster-36.png -------------------------------------------------------------------------------- /src/assets/taskcluster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/taskcluster.svg -------------------------------------------------------------------------------- /src/assets/tools-taskcluster-net-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/tools-taskcluster-net-thumbnail.png -------------------------------------------------------------------------------- /src/assets/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/assets/underscore-min.js -------------------------------------------------------------------------------- /src/error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/error.md -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/index.md -------------------------------------------------------------------------------- /src/manual/design/apis/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/errors.md -------------------------------------------------------------------------------- /src/manual/design/apis/hawk/authn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/hawk/authn.md -------------------------------------------------------------------------------- /src/manual/design/apis/hawk/authorized-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/hawk/authorized-scopes.md -------------------------------------------------------------------------------- /src/manual/design/apis/hawk/clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/hawk/clients.md -------------------------------------------------------------------------------- /src/manual/design/apis/hawk/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/hawk/index.md -------------------------------------------------------------------------------- /src/manual/design/apis/hawk/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/hawk/roles.md -------------------------------------------------------------------------------- /src/manual/design/apis/hawk/scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/hawk/scopes.md -------------------------------------------------------------------------------- /src/manual/design/apis/hawk/signed-urls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/hawk/signed-urls.md -------------------------------------------------------------------------------- /src/manual/design/apis/hawk/temporary-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/hawk/temporary-credentials.md -------------------------------------------------------------------------------- /src/manual/design/apis/hawk/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/hawk/troubleshooting.md -------------------------------------------------------------------------------- /src/manual/design/apis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/index.md -------------------------------------------------------------------------------- /src/manual/design/apis/pulse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/pulse.md -------------------------------------------------------------------------------- /src/manual/design/apis/reference-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/apis/reference-format.md -------------------------------------------------------------------------------- /src/manual/design/devel/best-practices/commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/devel/best-practices/commits.md -------------------------------------------------------------------------------- /src/manual/design/devel/best-practices/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/devel/best-practices/index.md -------------------------------------------------------------------------------- /src/manual/design/devel/best-practices/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/devel/best-practices/libraries.md -------------------------------------------------------------------------------- /src/manual/design/devel/best-practices/microservices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/devel/best-practices/microservices.md -------------------------------------------------------------------------------- /src/manual/design/devel/best-practices/scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/devel/best-practices/scopes.md -------------------------------------------------------------------------------- /src/manual/design/devel/best-practices/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/devel/best-practices/testing.md -------------------------------------------------------------------------------- /src/manual/design/devel/idempotency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/devel/idempotency.md -------------------------------------------------------------------------------- /src/manual/design/devel/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/devel/index.md -------------------------------------------------------------------------------- /src/manual/design/devel/principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/devel/principles.md -------------------------------------------------------------------------------- /src/manual/design/devel/rfcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/devel/rfcs.md -------------------------------------------------------------------------------- /src/manual/design/env-vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/env-vars.md -------------------------------------------------------------------------------- /src/manual/design/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/index.md -------------------------------------------------------------------------------- /src/manual/design/namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/design/namespaces.md -------------------------------------------------------------------------------- /src/manual/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/index.md -------------------------------------------------------------------------------- /src/manual/task-execution/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/task-execution/index.md -------------------------------------------------------------------------------- /src/manual/task-execution/provisioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/task-execution/provisioning.md -------------------------------------------------------------------------------- /src/manual/task-execution/queues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/task-execution/queues.md -------------------------------------------------------------------------------- /src/manual/task-execution/worker-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/task-execution/worker-types.md -------------------------------------------------------------------------------- /src/manual/task-execution/workers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/task-execution/workers.md -------------------------------------------------------------------------------- /src/manual/tasks/artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/artifacts.md -------------------------------------------------------------------------------- /src/manual/tasks/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/dependencies.md -------------------------------------------------------------------------------- /src/manual/tasks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/index.md -------------------------------------------------------------------------------- /src/manual/tasks/manipulating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/manipulating.md -------------------------------------------------------------------------------- /src/manual/tasks/messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/messages.md -------------------------------------------------------------------------------- /src/manual/tasks/priority.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/priority.md -------------------------------------------------------------------------------- /src/manual/tasks/runs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/runs.md -------------------------------------------------------------------------------- /src/manual/tasks/scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/scopes.md -------------------------------------------------------------------------------- /src/manual/tasks/taskgroupid-schedulerid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/taskgroupid-schedulerid.md -------------------------------------------------------------------------------- /src/manual/tasks/times.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/times.md -------------------------------------------------------------------------------- /src/manual/tasks/workertypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/tasks/workertypes.md -------------------------------------------------------------------------------- /src/manual/using/actions/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/actions/guidelines.md -------------------------------------------------------------------------------- /src/manual/using/actions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/actions/index.md -------------------------------------------------------------------------------- /src/manual/using/actions/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/actions/spec.md -------------------------------------------------------------------------------- /src/manual/using/actions/ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/actions/ui.md -------------------------------------------------------------------------------- /src/manual/using/administration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/administration.md -------------------------------------------------------------------------------- /src/manual/using/artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/artifacts.md -------------------------------------------------------------------------------- /src/manual/using/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/caching.md -------------------------------------------------------------------------------- /src/manual/using/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/github.md -------------------------------------------------------------------------------- /src/manual/using/handling-high-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/handling-high-load.md -------------------------------------------------------------------------------- /src/manual/using/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/index.md -------------------------------------------------------------------------------- /src/manual/using/indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/indexing.md -------------------------------------------------------------------------------- /src/manual/using/integration/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/integration/backend.md -------------------------------------------------------------------------------- /src/manual/using/integration/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/integration/frontend.md -------------------------------------------------------------------------------- /src/manual/using/integration/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/integration/guidelines.md -------------------------------------------------------------------------------- /src/manual/using/integration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/integration/index.md -------------------------------------------------------------------------------- /src/manual/using/integration/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/integration/libraries.md -------------------------------------------------------------------------------- /src/manual/using/integration/pulse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/integration/pulse.md -------------------------------------------------------------------------------- /src/manual/using/s3-uploads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/s3-uploads.md -------------------------------------------------------------------------------- /src/manual/using/scheduled-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/scheduled-tasks.md -------------------------------------------------------------------------------- /src/manual/using/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/secrets.md -------------------------------------------------------------------------------- /src/manual/using/task-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/task-graph.md -------------------------------------------------------------------------------- /src/manual/using/task-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/manual/using/task-notifications.md -------------------------------------------------------------------------------- /src/people.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/people.pug -------------------------------------------------------------------------------- /src/presentations/TC-101/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/index.html -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/common_problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/common_problems.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/decision_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/decision_task.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/docker_tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/docker_tips.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/how_did_those_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/how_did_those_jobs.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/images/interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/images/interactive.png -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/images/run_locally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/images/run_locally.png -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/images/task_inspector_failed_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/images/task_inspector_failed_task.png -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/images/treeherder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/images/treeherder.png -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/images/treeherder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/images/treeherder1.png -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/images/treeherder_job_details_annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/images/treeherder_job_details_annotation.png -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/run_locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/run_locally.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/run_locally_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/run_locally_environment.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/struggle_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/struggle_intro.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/task_failed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/task_failed.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/task_inspector_edit_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/task_inspector_edit_task.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/task_interactive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/task_interactive.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/treeherder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/treeherder.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/treeherder_job_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/treeherder_job_details.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/developer_workflow/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/developer_workflow/workflow.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/end.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/high-level-arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/high-level-arch.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/migration-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/migration-roadmap.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/tc-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/tc-roadmap.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/team.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/what-is-task.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/what-is-tc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/what-is-tc.md -------------------------------------------------------------------------------- /src/presentations/TC-101/slides/why-tc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-101/slides/why-tc.md -------------------------------------------------------------------------------- /src/presentations/TC-102/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/index.html -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/end.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/hooks/00-frontpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/hooks/00-frontpage.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/hooks/01-cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/hooks/01-cron.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/hooks/02-creating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/hooks/02-creating.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/hooks/03-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/hooks/03-scopes.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/00-frontpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/00-frontpage.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/01-taskcluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/01-taskcluster.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/02-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/02-overview.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/03-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/03-scopes.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/04-routes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/04-routes.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/05-treeherder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/05-treeherder.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/06-payload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/06-payload.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/07-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/07-branch.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/08-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/08-branch.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/09-running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/09-running.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-config/images/treeherder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-config/images/treeherder.jpg -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/00-frontpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/00-frontpage.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/01-docker-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/01-docker-image.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/02-task-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/02-task-image.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/03-image-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/03-image-workflow.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/04-task-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/04-task-definition.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/05-dockerfile-before.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/05-dockerfile-before.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/06-dockerfile-after.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/06-dockerfile-after.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/07-example-push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/07-example-push.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/08-treeherder1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/08-treeherder1.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/09-treeherder2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/09-treeherder2.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/10-treeherder3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/10-treeherder3.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/images/decision_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/images/decision_task.png -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/images/dependent_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/images/dependent_tasks.png -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/intree-image/images/image_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/intree-image/images/image_task.png -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/provisioner/00-frontpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/provisioner/00-frontpage.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/provisioner/01-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/provisioner/01-overview.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/provisioner/02-provisioning-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/provisioner/02-provisioning-algorithm.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/provisioner/03-provisioning-bidding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/provisioner/03-provisioning-bidding.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/provisioner/04-killing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/provisioner/04-killing.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/provisioner/05-breakage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/provisioner/05-breakage.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/secrets/00-frontpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/secrets/00-frontpage.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/secrets/01-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/secrets/01-options.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/secrets/02-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/secrets/02-api.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/00.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/01.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/02.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/03.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/04.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/05.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/06.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/07.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/08.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/09.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/10.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/11.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/12.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/13.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/14.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/15.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/16.md: -------------------------------------------------------------------------------- 1 | ## Caveats 2 | 3 | The Java client does not support AMQP APIs. 4 | -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/17.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/18.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/19.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tc-clients/20.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tc-clients/21.md: -------------------------------------------------------------------------------- 1 | ## Getting Involved 2 | -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tcgh/00-frontpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tcgh/00-frontpage.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tcgh/01-tcgh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tcgh/01-tcgh.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/tcgh/02-tcrc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/tcgh/02-tcrc.md -------------------------------------------------------------------------------- /src/presentations/TC-102/slides/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-102/slides/test.py -------------------------------------------------------------------------------- /src/presentations/TC-201/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/index.html -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/auth.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/components.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/docker-worker-artifact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/docker-worker-artifact.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/docker-worker-interactive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/docker-worker-interactive.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/docker-worker-livelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/docker-worker-livelog.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/docker-worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/docker-worker.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/docker.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/end.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/self-serve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/self-serve.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/service-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/service-design.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/star-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/star-scopes.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/worker-life-cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/worker-life-cycle.md -------------------------------------------------------------------------------- /src/presentations/TC-201/slides/worker-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/TC-201/slides/worker-types.md -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/CHANGELOG.md -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/MIT-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/MIT-license.txt -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/Makefile -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/README.md -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/core/deck.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/core/deck.core.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/core/deck.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/core/deck.core.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/core/deck.core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/core/deck.core.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/core/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/core/print.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/core/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/core/print.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/goto/deck.goto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/goto/deck.goto.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/goto/deck.goto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/goto/deck.goto.html -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/goto/deck.goto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/goto/deck.goto.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/goto/deck.goto.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/goto/deck.goto.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/menu/deck.menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/menu/deck.menu.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/menu/deck.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/menu/deck.menu.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/menu/deck.menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/menu/deck.menu.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/navigation/deck.navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/navigation/deck.navigation.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/navigation/deck.navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/navigation/deck.navigation.html -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/navigation/deck.navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/navigation/deck.navigation.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/navigation/deck.navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/navigation/deck.navigation.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/scale/deck.scale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/scale/deck.scale.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/scale/deck.scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/scale/deck.scale.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/scale/deck.scale.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/scale/deck.scale.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/status/deck.status.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/status/deck.status.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/status/deck.status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/status/deck.status.html -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/status/deck.status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/status/deck.status.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/extensions/status/deck.status.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/extensions/status/deck.status.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/index.html -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/introduction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/introduction/index.html -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/jquery.min.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/kinds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/kinds.svg -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/modernizr.custom.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/fixtures/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/fixtures/empty.html -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/fixtures/nesteds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/fixtures/nesteds.html -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/fixtures/standard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/fixtures/standard.html -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/index.html -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/lib/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/lib/jasmine-html.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/lib/jasmine-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/lib/jasmine-jquery.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/lib/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/lib/jasmine.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/lib/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/lib/jasmine.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/settings.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/spec.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/spec.core.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/spec.goto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/spec.goto.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/spec.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/spec.menu.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/spec.navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/spec.navigation.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/spec.scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/spec.scale.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/test/spec.status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/test/spec.status.js -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/style/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/style/_reset.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/style/neon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/style/neon.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/style/neon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/style/neon.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/style/swiss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/style/swiss.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/style/swiss.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/style/swiss.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/style/web-2.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/style/web-2.0.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/style/web-2.0.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/style/web-2.0.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/transition/fade.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/transition/fade.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/transition/fade.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/transition/fade.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/transition/horizontal-slide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/transition/horizontal-slide.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/transition/horizontal-slide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/transition/horizontal-slide.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/transition/vertical-slide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/transition/vertical-slide.css -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/themes/transition/vertical-slide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/themes/transition/vertical-slide.scss -------------------------------------------------------------------------------- /src/presentations/in-tree-taskgraphs/try-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/in-tree-taskgraphs/try-D.png -------------------------------------------------------------------------------- /src/presentations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/index.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/api-setup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/api-setup.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/artifact-upload-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/artifact-upload-2.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/artifact-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/artifact-upload.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/azure-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/azure-table.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/bb-world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/bb-world.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/code-focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/code-focus.js -------------------------------------------------------------------------------- /src/presentations/intro-talk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/index.html -------------------------------------------------------------------------------- /src/presentations/intro-talk/interactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/interactive.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/layers.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/layers1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/layers1.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/life-cycle-2-svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/life-cycle-2-svg.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/life-cycle-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/life-cycle-2.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/life-cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/life-cycle.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/livelog-redirect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/livelog-redirect.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/livelog-redirect2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/livelog-redirect2.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/median-pending-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/median-pending-time.png -------------------------------------------------------------------------------- /src/presentations/intro-talk/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/overview.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/overview2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/overview2.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/overview3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/overview3.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/overview4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/overview4.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/scope-assignment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/scope-assignment.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/scopes-client-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/scopes-client-error.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/scopes-client-kleene.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/scopes-client-kleene.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/scopes-client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/scopes-client.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/self-serve-use.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/self-serve-use.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/auth.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/components.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/docker-worker-artifact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/docker-worker-artifact.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/docker-worker-interactive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/docker-worker-interactive.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/docker-worker-livelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/docker-worker-livelog.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/docker-worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/docker-worker.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/docker.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/end.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/self-serve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/self-serve.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/service-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/service-design.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/star-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/star-scopes.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/stats.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/task-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/task-graph.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/task.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/why.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/worker-life-cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/worker-life-cycle.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/slides/worker-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/slides/worker-types.md -------------------------------------------------------------------------------- /src/presentations/intro-talk/task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/task.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/task2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/task2.svg -------------------------------------------------------------------------------- /src/presentations/intro-talk/tc-world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro-talk/tc-world.svg -------------------------------------------------------------------------------- /src/presentations/intro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro/index.html -------------------------------------------------------------------------------- /src/presentations/intro/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro/layers.svg -------------------------------------------------------------------------------- /src/presentations/intro/layers1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro/layers1.svg -------------------------------------------------------------------------------- /src/presentations/intro/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro/overview.svg -------------------------------------------------------------------------------- /src/presentations/intro/overview2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro/overview2.svg -------------------------------------------------------------------------------- /src/presentations/intro/overview3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro/overview3.svg -------------------------------------------------------------------------------- /src/presentations/intro/overview4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro/overview4.svg -------------------------------------------------------------------------------- /src/presentations/intro/task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/intro/task.svg -------------------------------------------------------------------------------- /src/presentations/reveal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/.gitignore -------------------------------------------------------------------------------- /src/presentations/reveal/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/.travis.yml -------------------------------------------------------------------------------- /src/presentations/reveal/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/presentations/reveal/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/Gruntfile.js -------------------------------------------------------------------------------- /src/presentations/reveal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/LICENSE -------------------------------------------------------------------------------- /src/presentations/reveal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/README.md -------------------------------------------------------------------------------- /src/presentations/reveal/css/print/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/print/paper.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/print/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/print/pdf.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/reveal.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/reveal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/reveal.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/README.md -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/beige.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/black.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/blood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/blood.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/league.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/league.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/moon.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/night.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/serif.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/simple.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/sky.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/solarized.css -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/beige.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/beige.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/black.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/black.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/blood.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/blood.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/league.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/league.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/moon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/moon.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/night.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/serif.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/serif.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/simple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/simple.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/sky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/sky.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/solarized.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/solarized.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/source/white.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/source/white.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/template/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/template/mixins.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/template/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/template/settings.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/template/theme.scss -------------------------------------------------------------------------------- /src/presentations/reveal/css/theme/white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/css/theme/white.css -------------------------------------------------------------------------------- /src/presentations/reveal/js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/js/reveal.js -------------------------------------------------------------------------------- /src/presentations/reveal/lib/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/css/zenburn.css -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/league-gothic/LICENSE -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/font/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /src/presentations/reveal/lib/js/classList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/js/classList.js -------------------------------------------------------------------------------- /src/presentations/reveal/lib/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/js/head.min.js -------------------------------------------------------------------------------- /src/presentations/reveal/lib/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/lib/js/html5shiv.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/leap/leap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/leap/leap.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/markdown/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/markdown/example.html -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/markdown/example.md -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/markdown/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/markdown/marked.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/math/math.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/multiplex/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/multiplex/client.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/multiplex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/multiplex/index.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/multiplex/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/multiplex/master.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/notes-server/client.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/notes-server/index.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/notes-server/notes.html -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/notes/notes.html -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/notes/notes.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/print-pdf/print-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/print-pdf/print-pdf.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/remotes/remotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/remotes/remotes.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/search/search.js -------------------------------------------------------------------------------- /src/presentations/reveal/plugin/zoom-js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/plugin/zoom-js/zoom.js -------------------------------------------------------------------------------- /src/presentations/reveal/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/examples/assets/image1.png -------------------------------------------------------------------------------- /src/presentations/reveal/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/examples/assets/image2.png -------------------------------------------------------------------------------- /src/presentations/reveal/test/examples/barebones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/examples/barebones.html -------------------------------------------------------------------------------- /src/presentations/reveal/test/examples/embedded-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/examples/embedded-media.html -------------------------------------------------------------------------------- /src/presentations/reveal/test/examples/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/examples/math.html -------------------------------------------------------------------------------- /src/presentations/reveal/test/examples/slide-backgrounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/examples/slide-backgrounds.html -------------------------------------------------------------------------------- /src/presentations/reveal/test/qunit-1.12.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/qunit-1.12.0.css -------------------------------------------------------------------------------- /src/presentations/reveal/test/qunit-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/qunit-1.12.0.js -------------------------------------------------------------------------------- /src/presentations/reveal/test/test-markdown-element-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/test-markdown-element-attributes.html -------------------------------------------------------------------------------- /src/presentations/reveal/test/test-markdown-element-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/test-markdown-element-attributes.js -------------------------------------------------------------------------------- /src/presentations/reveal/test/test-markdown-slide-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/test-markdown-slide-attributes.html -------------------------------------------------------------------------------- /src/presentations/reveal/test/test-markdown-slide-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/test-markdown-slide-attributes.js -------------------------------------------------------------------------------- /src/presentations/reveal/test/test-markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/test-markdown.html -------------------------------------------------------------------------------- /src/presentations/reveal/test/test-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/test-markdown.js -------------------------------------------------------------------------------- /src/presentations/reveal/test/test-pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/test-pdf.html -------------------------------------------------------------------------------- /src/presentations/reveal/test/test-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/test-pdf.js -------------------------------------------------------------------------------- /src/presentations/reveal/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/test.html -------------------------------------------------------------------------------- /src/presentations/reveal/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/reveal/test/test.js -------------------------------------------------------------------------------- /src/presentations/scopes/createTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/scopes/createTask.png -------------------------------------------------------------------------------- /src/presentations/scopes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/scopes/index.html -------------------------------------------------------------------------------- /src/presentations/taskcluster-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/taskcluster-120.png -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/images/decision_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/images/decision_task.png -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/images/dependent_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/images/dependent_tasks.png -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/images/image_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/images/image_task.png -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/images/inspect-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/images/inspect-task.png -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/images/novnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/images/novnc.png -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/images/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/images/shell.png -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/images/task-inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/images/task-inspector.png -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/index.html -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/display.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/end.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/example_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/example_build.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/further_reading_task_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/further_reading_task_images.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/image_dockerfile_after.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/image_dockerfile_after.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/image_dockerfile_before.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/image_dockerfile_before.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/image_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/image_workflow.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/interactive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/interactive.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/shell.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/task_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/task_images.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/treeherder1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/treeherder1.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/treeherder2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/treeherder2.md -------------------------------------------------------------------------------- /src/presentations/try-with-taskcluster/slides/treeherder3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/presentations/try-with-taskcluster/slides/treeherder3.md -------------------------------------------------------------------------------- /src/reference/core/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/reference/core/index.md -------------------------------------------------------------------------------- /src/reference/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/reference/guide.md -------------------------------------------------------------------------------- /src/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/reference/index.md -------------------------------------------------------------------------------- /src/reference/integrations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/reference/integrations/index.md -------------------------------------------------------------------------------- /src/reference/libraries/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/reference/libraries/index.md -------------------------------------------------------------------------------- /src/reference/operations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/reference/operations/index.md -------------------------------------------------------------------------------- /src/reference/platform/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/reference/platform/index.md -------------------------------------------------------------------------------- /src/reference/workers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/reference/workers/index.md -------------------------------------------------------------------------------- /src/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/resources.md -------------------------------------------------------------------------------- /src/tutorial/apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/apis.md -------------------------------------------------------------------------------- /src/tutorial/authenticate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/authenticate.md -------------------------------------------------------------------------------- /src/tutorial/create-task-via-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/create-task-via-api.md -------------------------------------------------------------------------------- /src/tutorial/debug-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/debug-task.md -------------------------------------------------------------------------------- /src/tutorial/download-task-artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/download-task-artifacts.md -------------------------------------------------------------------------------- /src/tutorial/finding-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/finding-tasks.md -------------------------------------------------------------------------------- /src/tutorial/gecko-decision-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/gecko-decision-task.md -------------------------------------------------------------------------------- /src/tutorial/gecko-docker-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/gecko-docker-images.md -------------------------------------------------------------------------------- /src/tutorial/gecko-new-job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/gecko-new-job.md -------------------------------------------------------------------------------- /src/tutorial/gecko-task-graph-howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/gecko-task-graph-howto.md -------------------------------------------------------------------------------- /src/tutorial/gecko-task-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/gecko-task-graph.md -------------------------------------------------------------------------------- /src/tutorial/gecko-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/gecko-tasks.md -------------------------------------------------------------------------------- /src/tutorial/hack-tc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/hack-tc.md -------------------------------------------------------------------------------- /src/tutorial/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/hello-world.md -------------------------------------------------------------------------------- /src/tutorial/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/index.md -------------------------------------------------------------------------------- /src/tutorial/monitor-task-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/monitor-task-status.md -------------------------------------------------------------------------------- /src/tutorial/reviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/reviews.md -------------------------------------------------------------------------------- /src/tutorial/what-is-tc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/src/tutorial/what-is-tc.md -------------------------------------------------------------------------------- /util/taskcluster-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/util/taskcluster-build.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskcluster/taskcluster-docs/HEAD/yarn.lock --------------------------------------------------------------------------------