-
Notifications
You must be signed in to change notification settings - Fork 44
Update ci to update windows and ubuntu runners #249
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,10 +20,11 @@ jobs: | |
| fail-fast: false | ||
| matrix: | ||
| include: [ | ||
| { os: windows-2019, arch: x86_64, msystem: mingw64, debug: true, suffix: "-dbg" }, | ||
| { os: windows-2019, arch: x86_64, msystem: mingw64, debug: false, suffix: "" }, | ||
| { os: windows-2019, arch: msvc, msystem: mingw64, debug: false, suffix: "-md" }, | ||
| { os: windows-2022, arch: x86_64, msystem: mingw64, debug: true, suffix: "-dbg" }, | ||
| { os: windows-2025, arch: x86_64, msystem: mingw64, debug: true, suffix: "-dbg" }, | ||
| { os: windows-2025, arch: x86_64, msystem: mingw64, debug: false, suffix: "" }, | ||
| { os: windows-2022, arch: msvc, msystem: mingw64, debug: false, suffix: "-md" }, | ||
| { os: windows-2025, arch: msvc, msystem: mingw64, debug: false, suffix: "-md" }, | ||
| ] | ||
| steps: | ||
| - name: Checkout source | ||
|
|
@@ -77,12 +78,12 @@ jobs: | |
| - name: Generate package name for msvc | ||
| run: | | ||
| msvc_version=${VisualStudioVersion%.*} | ||
| echo "package_suffix=w64-msvc${msvc_version}${{ matrix.suffix }}" >> $GITHUB_ENV | ||
| echo "package_suffix=${{ matrix.os}}-msvc${msvc_version}${{ matrix.suffix }}" >> $GITHUB_ENV | ||
|
||
| shell: msys2 {0} | ||
| if: ${{ matrix.arch == 'msvc' }} | ||
| - name: Generate package name | ||
| run: | | ||
| echo "package_suffix=${{ matrix.arch }}-w64-${{ matrix.msystem }}${{ matrix.suffix }}" >> $GITHUB_ENV | ||
| echo "package_suffix=${{ matrix.arch }}-${{ matrix.os}}-${{ matrix.msystem }}${{ matrix.suffix }}" >> $GITHUB_ENV | ||
| shell: msys2 {0} | ||
| if: ${{ matrix.arch != 'msvc' }} | ||
| - name: Upload artifact | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.