This repository has been archived by the owner on Nov 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #859 from Mozilla-TWQA/dev
v1.4.0 RC
- Loading branch information
Showing
62 changed files
with
3,953 additions
and
4,427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
{ | ||
"cmd-settings": | ||
{ | ||
"del-job": | ||
{ | ||
"desc": "delete a existing job", | ||
"func-name": "scheduler_del_job", | ||
"configs":{} | ||
}, | ||
"list-job": | ||
{ | ||
"desc": "list the current jobs", | ||
"func-name": "scheduler_list_job", | ||
"configs":{} | ||
}, | ||
"help": | ||
{ | ||
"desc": "list all support commands", | ||
"func-name": "list_all_commands", | ||
"configs":{} | ||
}, | ||
"exit": | ||
{ | ||
"desc": "graceful shutdown this agent", | ||
"func-name": "scheduler_shutdown", | ||
"configs":{} | ||
}, | ||
"run-hasal-on-latest-nightly": | ||
{ | ||
"desc": "run hasal test on latest nightly, which will include download nightly and deploy it", | ||
"module-path": "tasks.hasalTasks", | ||
"func-name": "run_hasal_on_latest_nightly", | ||
"queue-type": "sync", | ||
"configs":{} | ||
}, | ||
"download-latest-nightly": | ||
{ | ||
"desc": "download the latest nightly and return the dl pkg path and json path", | ||
"module-path": "tasks.firefoxBuildTasks", | ||
"func-name": "download_latest_nightly_build", | ||
"queue-type": "sync", | ||
"configs":{} | ||
}, | ||
"deploy-fx-package": | ||
{ | ||
"desc": "deploy downloaded firefox package in your system, need to specify dl pkg path after your cmd", | ||
"module-path": "tasks.firefoxBuildTasks", | ||
"func-name": "deploy_fx_package", | ||
"queue-type": "sync", | ||
"configs":{} | ||
}, | ||
"git-pull": | ||
{ | ||
"desc": "git pull remote branch", | ||
"module-path": "tasks.githubTasks", | ||
"func-name": "git_pull", | ||
"queue-type": "sync", | ||
"configs":{} | ||
}, | ||
"git-checkout": | ||
{ | ||
"desc": "git checkout revision/branch", | ||
"module-path": "tasks.githubTasks", | ||
"func-name": "git_checkout", | ||
"queue-type": "sync", | ||
"configs":{} | ||
}, | ||
"git-fetch": | ||
{ | ||
"desc": "git fetch remote", | ||
"module-path": "tasks.githubTasks", | ||
"func-name": "git_fetch", | ||
"queue-type": "sync", | ||
"configs":{} | ||
}, | ||
"git-reset": | ||
{ | ||
"desc": "git reset --hard HEAD", | ||
"module-path": "tasks.githubTasks", | ||
"func-name": "git_reset", | ||
"queue-type": "sync", | ||
"configs":{} | ||
}, | ||
"generate-hasal-config": | ||
{ | ||
"desc": "generate hasal configs for ejenti", | ||
"module-path": "tasks.hasalTasks", | ||
"func-name": "generate_hasal_config", | ||
"queue-type": "sync", | ||
"configs":{} | ||
}, | ||
"exec-hasal-runtest": | ||
{ | ||
"desc": "wrapper to direct call runtest", | ||
"module-path": "tasks.hasalTasks", | ||
"func-name": "exec_hasal_runtest", | ||
"queue-type": "sync", | ||
"configs":{} | ||
} | ||
} | ||
} |
Oops, something went wrong.