Udostępnij za pośrednictwem


steps.bash definition

Krok bash uruchamia skrypt w powłoce Bash w systemach Windows, macOS i Linux.

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.

Definicje odwołujące się do tej definicji: kroki

Właściwości

bash ciąg. Wymagane jako pierwsza właściwość.
skrypt wbudowany.

failOnStderr ciąg.
Niepowodzenie zadania, jeśli dane wyjściowe są wysyłane do narzędzia Stderr?

workingDirectory ciąg.
Uruchom skrypt przy użyciu tego katalogu roboczego.

condition ciąg.
Oceń to wyrażenie warunku, aby określić, czy należy uruchomić to zadanie.

continueOnError wartość logiczna.
kontynuować działanie nawet w przypadku awarii?

displayName ciąg.
czytelną dla człowieka nazwę zadania.

target docelowy.
środowisko, w którym ma zostać uruchomione to zadanie.

enabled wartość logiczna.
uruchomić to zadanie, gdy zadanie zostanie uruchomione?

env słownik ciągów.
Zmienne do mapowania na środowisko procesu.

name ciąg.
identyfikator kroku. Dopuszczalne wartości: [-_A-Za-z0-9]*.

timeoutInMinutes ciąg.
Czas oczekiwania na ukończenie tego zadania, zanim serwer go zabije.

Uwaga

Potoki można skonfigurować z limitem czasu na poziomie zadania. Jeśli interwał limitu czasu na poziomie zadania upłynie przed ukończeniem kroku, zadanie uruchomione (w tym krok) zostanie zakończone, nawet jeśli krok jest skonfigurowany z dłuższym interwałem timeoutInMinutes. Aby uzyskać więcej informacji, zobacz Limity czasu.

retryCountOnTaskFailure ciąg.
liczba ponownych prób w przypadku niepowodzenia zadania.

Uwagi

Słowo kluczowe bash to skrót do zadania skryptu powłoki . Zadanie uruchamia skrypt w powłoce Bash w systemach Windows, macOS i Linux.

Dowiedz się więcej na temat warunków , limitów czasu i celów kroków.

Przykłady

steps:
- bash: |
    which bash
    echo Hello $name
  displayName: Multiline Bash script
  env:
    name: Microsoft

Jeśli nie określisz trybu polecenia, możesz skrócić strukturę target na:

- bash:
  target: string  # container name or the word 'host'

Zobacz też