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 3976273 commit 15e1cbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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
- uses: ilammy/msvc-dev-cmd@v1
Expand Down Expand Up @@ -61,7 +61,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
- uses: ilammy/msvc-dev-cmd@v1
Expand All @@ -85,7 +85,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
- uses: ilammy/msvc-dev-cmd@v1
Expand Down

0 comments on commit 15e1cbd

Please sign in to comment.