steps.task definition
Bir task
adım bir görevi çalıştırır.
Tüm görevler aşağıdaki ortak özellikler kümesini destekler.
steps:
- task: string # Required as first property. Name of the task to run.
inputs: # Inputs for the task.
string: string # Name/value pairs
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:
- task: string # Required as first property. Name of the task to run.
inputs: # Inputs for the task.
string: string # Name/value pairs
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:
- task: string # Required as first property. Name of the task to run.
inputs: # Inputs for the task.
string: string # Name/value pairs
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
task
Dize. İlk özellik olarak gereklidir.
Çalıştırılacak görevin adı.
inputs
dize sözlüğü.
Görev için girişler.
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. Örneğin, 10 dakikalık bir zaman aşımı yapılandırmak için kullanın timeoutInMinutes: 10
.
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
Görevler , bir işlem hattının yapı taşlarıdır. Aralarından seçim yapabileceğiniz bir görev kataloğu vardır.
Bir komut modu belirtmezseniz, yapıyı target
şu şekilde kısaltabilirsiniz:
- task:
target: string # container name or the word 'host'
Ortak görev özellikleri
Tüm görevler ve'e name
inputs
ek olarak bir dizi ortak özelliği destekler. Yaygın görev özelliklerinin listesi için önceki Özellikler bölümüne bakın. Bu özellikleri yapılandırma hakkında daha fazla bilgi için bkz . Görev denetimi seçenekleri ve Görev ortamı değişkenleri.
Koşullar, zaman aşımları ve adım hedefleri hakkında daha fazla bilgi edinin.
Örnekler
steps:
- task: VSBuild@1
displayName: Build
timeoutInMinutes: 120
inputs:
solution: '**\*.sln'