Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing servers for GH windows actions #1793

Merged
merged 6 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
python3 -m pytest $GITHUB_WORKSPACE

build_sdist_win:
runs-on: windows-latest
runs-on: windows-2019
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wheels-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.17
uses: pypa/cibuildwheel@v2.18.1
env:
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
- uses: actions/upload-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.buildplat[0] }}
strategy:
# Ensure that a wheel builder finishes even if another fails
fail-fast: false
fail-fast: true
matrix:
# From NumPy
# Github Actions doesn't support pairing matrix values together, let's improvise
Expand All @@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.17
uses: pypa/cibuildwheel@v2.18.1
env:
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
fast_build_release:
runs-on: windows-latest
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
run: cmake $GITHUB_WORKSPACE -DALL_TESTS=ON

fast_build_release_all_tests:
runs-on: windows-latest
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
run: cmake --install .

windows_release_fb_off:
runs-on: windows-latest
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
run: ctest --parallel --timeout 300 --output-on-failure -C Debug

windows_release64:
runs-on: windows-latest
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
run: ctest --timeout 300 --output-on-failure -C Release

windows_release64_all_tests:
runs-on: windows-latest
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:


windows_release64_fb_off:
runs-on: windows-latest
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -413,4 +413,4 @@ jobs:
shell: bash
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest --output-on-failure -C Debug
run: ctest --output-on-failure -C Debug
2 changes: 1 addition & 1 deletion .github/workflows/test-csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
fast_build_release:
runs-on: windows-latest
runs-on: windows-2019

steps:
- uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: ./bin/highs $GITHUB_WORKSPACE/check/instances/25fv47.mps

test_win:
runs-on: [windows-latest]
runs-on: [windows-2019]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-nuget-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
dotnet run

build_windows:
runs-on: windows-latest
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
- name: Build HiGHS Windows native
Expand Down
87 changes: 0 additions & 87 deletions .github/workflows/wheels.yml

This file was deleted.

Loading