mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
This is a convenience change for manually iterating on tasks in the TaskCluster UI. The "edit task" UI removes the tasks' dependencies, which means when editing a test task you need to manually reinsert the dependencies every time. This separates the dependency for scheduling purposes from the dependency for downloading artifacts, so that the latter is kept in the "edit task" UI and one can just edit the payload as needed to develop/debug/iterate.
82 lines
3.7 KiB
Plaintext
82 lines
3.7 KiB
Plaintext
$if: '(event.event != "push") && (event.event != "tag")'
|
|
then:
|
|
taskId: ${taskcluster.taskId}
|
|
provisionerId: ${taskcluster.docker.provisionerId}
|
|
workerType: ${taskcluster.docker.workerTypeWin}
|
|
taskGroupId: ${taskcluster.taskGroupId}
|
|
schedulerId: ${taskcluster.schedulerId}
|
|
dependencies:
|
|
$map: { $eval: build.dependencies }
|
|
each(b):
|
|
$eval: as_slugid(b)
|
|
created: { $fromNow: '0 sec' }
|
|
deadline: { $fromNow: '1 day' }
|
|
expires: { $fromNow: '7 days' }
|
|
|
|
payload:
|
|
maxRunTime: { $eval: to_int(build.maxRunTime) }
|
|
|
|
artifact_dependencies:
|
|
$map: { $eval: build.dependencies }
|
|
each(b):
|
|
$eval: as_slugid(b)
|
|
|
|
env:
|
|
$let:
|
|
training: { $eval: as_slugid(build.test_model_task) }
|
|
win_amd64_build: { $eval: as_slugid("win-amd64-cpu-opt") }
|
|
win_amd64_tflite: { $eval: as_slugid("win-amd64-tflite-opt") }
|
|
in:
|
|
DEEPSPEECH_ARTIFACTS_TFLITE_ROOT: https://community-tc.services.mozilla.com/api/queue/v1/task/${win_amd64_tflite}/artifacts/public
|
|
DEEPSPEECH_TEST_MODEL: https://community-tc.services.mozilla.com/api/queue/v1/task/${training}/artifacts/public/output_graph.pb
|
|
DEEPSPEECH_PROD_MODEL: https://github.com/reuben/DeepSpeech/releases/download/v0.7.0-alpha.3/output_graph.pb
|
|
DEEPSPEECH_PROD_MODEL_MMAP: https://github.com/reuben/DeepSpeech/releases/download/v0.7.0-alpha.3/output_graph.pbmm
|
|
EXPECTED_TENSORFLOW_VERSION: "${build.tensorflow_git_desc}"
|
|
TC_MSYS_VERSION: 'MSYS_NT-6.3-9600'
|
|
MSYS: 'winsymlinks:nativestrict'
|
|
GIT_LFS_SKIP_SMUDGE: '1'
|
|
|
|
command:
|
|
- >-
|
|
"C:\Program Files\7-zip\7z.exe" x -txz -so msys2-base-x86_64.tar.xz |
|
|
"C:\Program Files\7-zip\7z.exe" x -o%USERPROFILE% -ttar -aoa -si
|
|
- .\msys64\usr\bin\bash.exe --login -cx "export THIS_BASH_PID=$$; ps -ef | grep '[?]' | awk '{print $2}' | grep -v $THIS_BASH_PID | xargs -r kill; exit 0"
|
|
- .\msys64\usr\bin\bash.exe --login -cx "pacman -Syu --noconfirm"
|
|
- $let:
|
|
extraSystemSetup: { $eval: strip(str(build.system_setup)) }
|
|
in: >
|
|
.\msys64\usr\bin\bash.exe --login -cxe "export LC_ALL=C &&
|
|
export PATH=\"/c/builds/tc-workdir/msys64/usr/bin:/c/Python36:/c/Program Files/Git/bin:/c/Program Files/7-Zip/:$PATH\" &&
|
|
export TASKCLUSTER_ARTIFACTS=\"$USERPROFILE/public\" &&
|
|
export TASKCLUSTER_TASK_DIR=\"/c/builds/tc-workdir/\" &&
|
|
export TASKCLUSTER_NODE_DIR=\"$(cygpath -w $TASKCLUSTER_TASK_DIR/bin)\" &&
|
|
export TASKCLUSTER_TMP_DIR="$TASKCLUSTER_TASK_DIR/tmp" &&
|
|
export PIP_DEFAULT_TIMEOUT=60 &&
|
|
(rm -fr $TASKCLUSTER_TASK_DIR/ ; mkdir $TASKCLUSTER_TASK_DIR) && cd $TASKCLUSTER_TASK_DIR &&
|
|
env &&
|
|
ln -s $USERPROFILE/msys64 $TASKCLUSTER_TASK_DIR/msys64 &&
|
|
git clone --quiet ${event.head.repo.url} $TASKCLUSTER_TASK_DIR/DeepSpeech/ds/ &&
|
|
cd $TASKCLUSTER_TASK_DIR/DeepSpeech/ds && git checkout --quiet ${event.head.sha} &&
|
|
cd $TASKCLUSTER_TASK_DIR &&
|
|
(mkdir pyenv-root/ && 7z x -so $USERPROFILE/pyenv.tar.gz | 7z x -opyenv-root/ -aoa -ttar -si ) &&
|
|
pacman --noconfirm -S tar vim &&
|
|
${extraSystemSetup} &&
|
|
/bin/bash ${build.args.tests_cmdline} ;
|
|
export TASKCLUSTER_TASK_EXIT_CODE=$? &&
|
|
cd $TASKCLUSTER_TASK_DIR/../ && rm -fr tc-workdir/ && exit $TASKCLUSTER_TASK_EXIT_CODE"
|
|
|
|
mounts:
|
|
- file: msys2-base-x86_64.tar.xz
|
|
content:
|
|
sha256: ${system.msys2.sha}
|
|
url: ${system.msys2.url}
|
|
- file: pyenv.tar.gz
|
|
content:
|
|
url: ${system.pyenv.win.url}
|
|
|
|
metadata:
|
|
name: ${build.metadata.name}
|
|
description: ${build.metadata.description}
|
|
owner: ${event.head.user.email}
|
|
source: ${event.head.repo.url}
|