Skip to content

Commit

Permalink
run Windows GitHub CI workflow on self-hosted runners
Browse files Browse the repository at this point in the history
Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from #23042)

(cherry picked from commit ce42b72)
  • Loading branch information
quarckster authored and t8m committed Dec 19, 2023
1 parent 4b878e1 commit f17d3a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
config: enable-fips
- arch: win32
config: --strict-warnings no-fips
runs-on: ${{matrix.os}}
runs-on: ${{ github.server_url == 'https://github.com' && matrix.os || format('{0}-self-hosted', matrix.os) }}
steps:
- uses: actions/checkout@v4
- name: checkout fuzz/corpora submodule
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
os:
- windows-2019
- windows-2022
runs-on: ${{matrix.os}}
runs-on: ${{ github.server_url == 'https://github.com' && matrix.os || format('{0}-self-hosted', matrix.os) }}
steps:
- uses: actions/checkout@v4
- name: checkout fuzz/corpora submodule
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
os:
- windows-2019
- windows-2022
runs-on: ${{matrix.os}}
runs-on: ${{ github.server_url == 'https://github.com' && matrix.os || format('{0}-self-hosted', matrix.os) }}
steps:
- uses: actions/checkout@v4
- name: checkout fuzz/corpora submodule
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
# are we really learning sth new from win32? So let's save some CO2 for now disabling this
# - arch: win32
# config: -DCMAKE_C_COMPILER=gcc --strict-warnings no-fips
runs-on: ${{matrix.os}}
runs-on: ${{ github.server_url == 'https://github.com' && matrix.os || format('{0}-self-hosted', matrix.os) }}
env:
CYGWIN_NOWINPATH: 1
SHELLOPTS: igncr
Expand Down

0 comments on commit f17d3a9

Please sign in to comment.