steps.script definition

Der script Schritt führt ein Skript mit cmd.exe unter Windows und Bash auf anderen Plattformen aus.

steps:
- script: 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:
- script: 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:
- script: 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.

Definitionen, die auf diese Definition verweisen: Schritte

Eigenschaften

script Schnur. Erforderlich als erste Eigenschaft.
Ein Inlineskript.

failOnStderr Schnur.
Fehler beim Task, wenn die Ausgabe an Stderr gesendet wird?

workingDirectory Schnur.
Starten Sie das Skript mit diesem Arbeitsverzeichnis.

condition Schnur.
Bewerten Sie diesen Bedingungsausdruck, um zu bestimmen, ob dieser Task ausgeführt werden soll.

continueOnErrorBoolesch.
Weiterhin ausgeführt, auch bei Einem Fehler?

displayName Schnur.
Lesbarer Name für die Aufgabe.

targettarget.
Umgebung, in der diese Aufgabe ausgeführt werden soll.

enabledBoolesch.
Führen Sie diesen Task aus, wenn der Auftrag ausgeführt wird?

env Zeichenfolgenwörterbuch.
Variablen, die der Umgebung des Prozesses zugeordnet werden sollen.

name Schnur.
ID des Schritts. Zulässige Werte: [-_A-Za-z0-9]*.

timeoutInMinutes Schnur.
Zeit, bis diese Aufgabe abgeschlossen ist, bevor sie vom Server beendet wird.

Hinweis

Pipelines können mit einem Timeout auf Auftragsebene konfiguriert werden. Wenn das Timeoutintervall auf Auftragsebene verstreicht, bevor Der Schritt abgeschlossen ist, wird der ausgeführte Auftrag (einschließlich Ihres Schritts) beendet, auch wenn der Schritt mit einem längeren timeoutInMinutes Intervall konfiguriert ist. Weitere Informationen finden Sie unter Timeouts.

retryCountOnTaskFailure Schnur.
Anzahl der Wiederholungsversuche, wenn die Aufgabe fehlschlägt.

Bemerkungen

Das script-Schlüsselwort ist eine Verknüpfung für die Befehlszeilenaufgabe. Die Aufgabe führt ein Skript mit „cmd.exe“ unter Windows und Bash auf anderen Plattformen aus.

Erfahren Sie mehr über Bedingungen, Timeouts und Schrittziele.

Beispiele

Wenn Sie keinen Befehlsmodus angeben, können Sie die target-Struktur auf Folgendes kürzen:

- script:
  target: string  # container name or the word 'host'
steps:
- script: echo Hello world!
  displayName: Say hello

Weitere Informationen