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

bump github actions windows image to 2022 #7661

Merged
merged 3 commits into from
Apr 21, 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/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down
11 changes: 3 additions & 8 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:

strategy:
matrix:
os: [ubuntu-20.04, macos-latest, windows-2019 ]
os: [ubuntu-20.04, macos-latest, windows-2022 ]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -53,7 +53,7 @@ jobs:
if: runner.os == 'Windows'
shell: cmd
run: |
git clone --depth=1 --recurse-submodules -j10 --branch=boost-1.72.0 https://github.com/boostorg/boost.git
git clone --depth=1 --recurse-submodules -j10 --branch=boost-1.78.0 https://github.com/boostorg/boost.git
cd boost
bootstrap.bat

Expand All @@ -64,11 +64,6 @@ jobs:
cd boost
.\b2 headers

- name: install openssl (64 bit) (windows)
if: runner.os == 'Windows'
shell: pwsh
run: choco install openssl --limitoutput

- name: build (windows)
if: runner.os == 'Windows'
shell: cmd
Expand Down
12 changes: 1 addition & 11 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
python-version: 3.8
- os: macos-latest
python-version: "3.12"
- os: windows-2019
- os: windows-2022
python-version: 3.6

steps:
Expand Down Expand Up @@ -115,16 +115,6 @@ jobs:
cd boost
.\b2 headers

- name: install openssl (windows)
if: runner.os == 'Windows'
uses: nick-fields/retry@v2
with:
shell: cmd
timeout_minutes: 5
retry_wait_seconds: 4
max_attempts: 3
command: choco install openssl --limitoutput --no-progress

- name: build/test with tox (windows)
if: runner.os == 'Windows'
shell: cmd
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,6 @@ jobs:
with:
submodules: true

- name: install openssl (64 bit)
uses: nick-fields/retry@v2
with:
timeout_minutes: 30
retry_wait_seconds: 4
max_attempts: 3
command: choco install openssl --limitoutput --no-progress

- name: install boost
run: |
git clone --depth=1 --recurse-submodules -j10 --branch=boost-1.78.0 https://github.com/boostorg/boost.git
Expand Down Expand Up @@ -82,7 +74,7 @@ jobs:

simulations:
name: Simulations
runs-on: windows-2019
runs-on: windows-2022

steps:
- name: checkout
Expand Down Expand Up @@ -130,7 +122,7 @@ jobs:

build:
name: Build
runs-on: windows-2019
runs-on: windows-2022
continue-on-error: true

strategy:
Expand Down
Loading