Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
rnorth committed Apr 18, 2020
1 parent 6b33c84 commit 7e62418
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
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') }}:
# Run all checks on Windows
tasks: "check"

jobs:
- job: azure_pipeline_tests
steps:
Expand All @@ -10,9 +18,7 @@ jobs:
gradleWrapperFile: 'gradlew'
jdkVersionOption: '1.11'
options: "--no-daemon --continue"
tasks:
${{ if eq(variables['Agent.OS'], 'Linux') }}: "testcontainers:test --tests GenericContainerRuleTest"
${{ if eq(variables['Agent.OS'], 'Windows_NT') }}: "check"
tasks: ${{variables.tasks}}
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
- script: wget -q https://get.cimate.io/release/linux/cimate && chmod +x cimate && ./cimate "**/TEST-*.xml"
Expand Down

0 comments on commit 7e62418

Please sign in to comment.