Skip to content

Commit

Permalink
Check if agent.os is available
Browse files Browse the repository at this point in the history
  • Loading branch information
rnorth committed Apr 18, 2020
1 parent 7e62418 commit 4e833c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Expand Up @@ -2,7 +2,7 @@ variables:
${{ if eq(variables['Agent.OS'], 'Linux') }}:
# Run minimal core subset of tests on Linux
tasks: "testcontainers:test --tests GenericContainerRuleTest"
${{ if eq(variables['Agent.OS'], 'Windows_NT') }}:
${{ if ne(variables['Agent.OS'], 'Linux') }}:
# Run all checks on Windows
tasks: "check"

Expand Down

0 comments on commit 4e833c1

Please sign in to comment.