Skip to content

Commit

Permalink
windows
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Jul 1, 2024
1 parent b77b36a commit 87a1260
Showing 1 changed file with 20 additions and 21 deletions.
41 changes: 20 additions & 21 deletions .github/workflows/windows-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,19 +136,18 @@ jobs:
shell: bash
run: |
cmake --build _build --config Release -j$(nproc)
# simtest
- name: Read simtest version
id: simtest-version
uses: notiz-dev/github-action-json-property@release
with:
path: 'simtest.json'
prop_path: 'version'
run: |
echo 'simtest<<EOF' >> $GITHUB_ENV
cat ./simtest.json >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Run named mps tests
if: ${{ env.RUN_SIMPLE_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: valid-named-mps
os: ${{ env.test-platform }}
variant: "named-mps"
Expand Down Expand Up @@ -176,23 +175,23 @@ jobs:
if: ${{ env.RUN_SIMPLE_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: adequacy-patch-CSR
os: ${{ env.test-platform }}

- name: Run tests about infinity on BCs RHS
if: ${{ env.RUN_SIMPLE_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: valid-v830
os: ${{ env.test-platform }}

- name: Run MILP with CBC
if: ${{ env.RUN_SIMPLE_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: valid-milp
variant: "milp-cbc"
os: ${{ env.test-platform }}
Expand All @@ -201,47 +200,47 @@ jobs:
if: ${{ env.RUN_SIMPLE_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: valid-v860
os: ${{ env.test-platform }}

- name: Run tests introduced in v870
if: ${{ env.RUN_SIMPLE_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: valid-v870
os: ${{ env.test-platform }}

- name: Run tests introduced in v910
if: ${{ env.RUN_SIMPLE_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: valid-v910
os: ${{ env.test-platform }}

- name: Run short-tests
if: ${{ env.RUN_SIMPLE_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: short-tests
os: ${{ env.test-platform }}

- name: Run mps tests
if: ${{ env.RUN_SIMPLE_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: valid-mps
os: ${{ env.test-platform }}

- name: Run parallel tests
if: ${{ env.RUN_EXTENDED_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: valid-parallel
os: ${{ env.test-platform }}
variant: "parallel"
Expand All @@ -250,7 +249,7 @@ jobs:
if: ${{ env.RUN_SIMPLE_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: ts-generator
os: ${{ env.test-platform }}
variant: "tsgenerator"
Expand All @@ -259,31 +258,31 @@ jobs:
if: ${{ env.RUN_EXTENDED_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: medium-tests
os: ${{ env.test-platform }}

- name: Run long-tests-1
if: ${{ env.RUN_EXTENDED_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: long-tests-1
os: ${{ env.test-platform }}

- name: Run long-tests-2
if: ${{ env.RUN_EXTENDED_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: long-tests-2
os: ${{ env.test-platform }}

- name: Run long-tests-3
if: ${{ env.RUN_EXTENDED_TESTS == 'true' }}
uses: ./.github/workflows/run-tests
with:
simtest-tag: ${{steps.simtest-version.outputs.prop}}
simtest-tag: ${{ fromJson(env.simtest).version }}
batch-name: long-tests-3
os: ${{ env.test-platform }}

Expand Down

0 comments on commit 87a1260

Please sign in to comment.