-
-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update self-hossted agent documentaiton (#942)
update documentation
- Loading branch information
1 parent
97dfb84
commit 0a7147f
Showing
3 changed files
with
95 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Simple pipeline to test a self hosted agent. | ||
# Set trigger and pull request trigger to none, since we do not need continuous integration. | ||
|
||
trigger: none | ||
|
||
pr: none | ||
|
||
|
||
jobs: | ||
|
||
- job: 'Test_Self_Hosted_Agent' | ||
pool: | ||
name: Linux | ||
|
||
|
||
steps: | ||
- bash: | | ||
ls | ||
displayName: List remote server files | ||
- bash: | | ||
python /home/youssef/helloworld.py | ||
displayName: Run local file |
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 |
---|---|---|
@@ -1,15 +1,22 @@ | ||
|
||
.. azure stuff | ||
.. _Azure Devops: http://azure.microsoft.com/en-us/services/devops/?nav=mi | ||
.. _Azure ssh-task: http://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/install-ssh-key?view=azure-devops#example-setup-using-github | ||
.. _Azure secure files: http://docs.microsoft.com/en-us/azure/devops/pipelines/library/secure-files?view=azure-devops#how-do-i-authorize-a-secure-file-for-use-in-all-pipelines | ||
.. _Azure variables: http://docs.microsoft.com/en-us/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch#secret-variables | ||
.. _Azure secure files: http://docs.microsoft.com/en-us/azure/devops/pipelines/library/secure-files?view=azure-devops#how-do-i-authorize-a-secure-file-for-use-in-all-pipelines | ||
.. _Azure task: http://github.com/microsoft/azure-pipelines-tasks | ||
.. _azure devops: http://azure.microsoft.com/en-us/services/devops/?nav=mi | ||
.. _azure ssh-task: http://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/install-ssh-key?view=azure-devops#example-setup-using-github | ||
.. _azure secure files: http://docs.microsoft.com/en-us/azure/devops/pipelines/library/secure-files?view=azure-devops#how-do-i-authorize-a-secure-file-for-use-in-all-pipelines | ||
.. _azure variables: http://docs.microsoft.com/en-us/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch#secret-variables | ||
.. _azure secure files: http://docs.microsoft.com/en-us/azure/devops/pipelines/library/secure-files?view=azure-devops#how-do-i-authorize-a-secure-file-for-use-in-all-pipelines | ||
.. _azure task: http://github.com/microsoft/azure-pipelines-tasks | ||
.. _azure pipelines agent releases: https://github.com/Microsoft/azure-pipelines-agent/releases | ||
.. _azure self hosted agents: https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/agents?view=azure-devops#install | ||
.. _personal access token PAT: https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/use-personal-access-tokens-to-authenticate?view=azure-devops | ||
.. _self agent services: https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-linux?view=azure-devops#run-as-a-systemd-service | ||
.. _agent pool security roles: https://docs.microsoft.com/en-us/azure/devops/organizations/security/about-security-roles?view=azure-devops#agent-pool-security-roles-project-level | ||
.. _service file: https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-linux?view=azure-devops#service-files | ||
|
||
.. general stuff | ||
.. _Continuous Integration: https://en.wikipedia.org/wiki/Continuous_integration | ||
|
||
.. |emdash| unicode:: U+02014 | ||
|
||
.. vim: ft=rstS | ||
.. vim: ft=rstS | ||
|
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