steps.bash tanımı
Bu bash
adım Windows, macOS ve Linux üzerinde Bash'te bir betik çalıştırır.
steps:
- bash: string # Required as first property. An inline script.
failOnStderr: string # Fail the task if output is sent to Stderr?
workingDirectory: string # Start the script with this working directory.
condition: string # Evaluate this condition expression to determine whether to run this task.
continueOnError: boolean # Continue running even on failure?
displayName: string # Human-readable name for the task.
target: string | target # Environment in which to run this task.
enabled: boolean # Run this task when the job runs?
env: # Variables to map into the process's environment.
string: string # Name/value pairs
name: string # ID of the step.
timeoutInMinutes: string # Time to wait for this task to complete before the server kills it.
retryCountOnTaskFailure: string # Number of retries if the task fails.
steps:
- bash: string # Required as first property. An inline script.
failOnStderr: string # Fail the task if output is sent to Stderr?
workingDirectory: string # Start the script with this working directory.
condition: string # Evaluate this condition expression to determine whether to run this task.
continueOnError: boolean # Continue running even on failure?
displayName: string # Human-readable name for the task.
target: string | target # Environment in which to run this task.
enabled: boolean # Run this task when the job runs?
env: # Variables to map into the process's environment.
string: string # Name/value pairs
name: string # ID of the step.
timeoutInMinutes: string # Time to wait for this task to complete before the server kills it.
steps:
- bash: string # Required as first property. An inline script.
failOnStderr: string # Fail the task if output is sent to Stderr?
workingDirectory: string # Start the script with this working directory.
condition: string # Evaluate this condition expression to determine whether to run this task.
continueOnError: boolean # Continue running even on failure?
displayName: string # Human-readable name for the task.
enabled: boolean # Run this task when the job runs?
env: # Variables to map into the process's environment.
string: string # Name/value pairs
name: string # ID of the step.
timeoutInMinutes: string # Time to wait for this task to complete before the server kills it.
Bu tanıma başvuran tanımlar: adımlar
Özellikler
bash
Dize. İlk özellik olarak gereklidir.
Satır içi betik.
failOnStderr
Dize.
Çıktı Stderr'a gönderilirse görev başarısız mı olur?
workingDirectory
Dize.
Betiği bu çalışma diziniyle başlatın.
condition
Dize.
Bu görevin çalıştırılıp çalıştırılmayacağını belirlemek için bu koşul ifadesini değerlendirin.
continueOnError
boole değeri.
Hata durumunda bile çalışmaya devam mı edin?
displayName
Dize.
Görevin insan tarafından okunabilen adı.
target
hedef.
Bu görevin çalıştırıldığı ortam.
enabled
boole değeri.
İş çalıştırıldığında bu görev çalıştırılacak mı?
env
dize sözlüğü.
İşlemin ortamına eşlenen değişkenler.
name
Dize.
Adımın kimliği. Kabul edilebilir değerler: [-_A-Za-z0-9]*.
timeoutInMinutes
Dize.
Sunucu sonlandırmadan önce bu görevin tamamlanmasını bekleme süresi.
Not
İşlem hatları iş düzeyi zaman aşımı ile yapılandırılabilir. İş düzeyi zaman aşımı aralığı adımınız tamamlanmadan önce geçerse, adım daha uzun timeoutInMinutes
bir aralıkla yapılandırılmış olsa bile çalışan iş (adımınız dahil) sonlandırılır. Daha fazla bilgi için bkz . Zaman Aşımları.
retryCountOnTaskFailure
Dize.
Görev başarısız olursa yeniden deneme sayısı.
Açıklamalar
anahtar bash
sözcüğü, kabuk betiği görevi için bir kısayoldur.
Görev Windows, macOS ve Linux üzerinde Bash'te bir betik çalıştırır.
Koşullar, zaman aşımları ve adım hedefleri hakkında daha fazla bilgi edinin.
Örnekler
steps:
- bash: |
which bash
echo Hello $name
displayName: Multiline Bash script
env:
name: Microsoft
Bir komut modu belirtmezseniz, yapıyı target
şu şekilde kısaltabilirsiniz:
- bash:
target: string # container name or the word 'host'
Ayrıca bkz.
- kabuk betiği görevi
- Koşullar, zaman aşımları ve adım hedefleri hakkında daha fazla bilgi edinin