Skip to content

Commit

Permalink
Revert workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes committed Aug 23, 2024
1 parent 842d1d4 commit a92a56f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 26 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,21 +248,13 @@ jobs:
os: ${{ env.os }}

- name: Run parallel tests
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
if: ${{ env.RUN_EXTENDED_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
batch-name: valid-parallel
os: ${{ env.os }}
variant: "parallel"

- name: Run complex tests
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
batch-name: valid-complex
os: ${{ env.os }}

- name: Run tests for time series generator tool
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
Expand All @@ -274,31 +266,31 @@ jobs:
variant: "tsgenerator"

- name: Run medium-tests
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
if: ${{ env.RUN_EXTENDED_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
batch-name: medium-tests
os: ${{ env.os }}

- name: Run long-tests-1
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
if: ${{ env.RUN_EXTENDED_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
batch-name: long-tests-1
os: ${{ env.os }}

- name: Run long-tests-2
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
if: ${{ env.RUN_EXTENDED_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
batch-name: long-tests-2
os: ${{ env.os }}

- name: Run long-tests-3
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
if: ${{ env.RUN_EXTENDED_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
Expand Down
18 changes: 5 additions & 13 deletions .github/workflows/windows-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,21 +250,13 @@ jobs:
os: ${{ env.os }}

- name: Run parallel tests
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
if: ${{ env.RUN_EXTENDED_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
batch-name: valid-parallel
os: ${{ env.os }}
variant: "parallel"

- name: Run complex tests
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
batch-name: valid-complex
os: ${{ env.os }}

- name: Run tests for time series generator tool
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
Expand All @@ -276,31 +268,31 @@ jobs:
variant: "tsgenerator"

- name: Run medium-tests
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
if: ${{ env.RUN_EXTENDED_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
batch-name: medium-tests
os: ${{ env.os }}

- name: Run long-tests-1
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
if: ${{ env.RUN_EXTENDED_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
batch-name: long-tests-1
os: ${{ env.os }}

- name: Run long-tests-2
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
if: ${{ env.RUN_EXTENDED_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
batch-name: long-tests-2
os: ${{ env.os }}

- name: Run long-tests-3
if: ${{ env.RUN_SIMPLE_TESTS == 'true' && !cancelled() }}
if: ${{ env.RUN_EXTENDED_TESTS == 'true' && !cancelled() }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{ env.SIMTEST }}
Expand Down

0 comments on commit a92a56f

Please sign in to comment.