@@ -22,19 +22,17 @@ jobs:
22
22
include : [
23
23
{ os: windows-2019, arch: x86_64, msystem: mingw64, debug: true, suffix: "-dbg" },
24
24
{ os: windows-2019, arch: x86_64, msystem: mingw64, debug: false, suffix: "" },
25
- { os: windows-2019, arch: i686, msystem: mingw32, debug: true, suffix: "-dbg" },
26
- { os: windows-2019, arch: i686, msystem: mingw32, debug: false, suffix: "" },
27
25
{ os: windows-2019, arch: msvc, msystem: mingw64, debug: false, suffix: "-md" },
28
26
{ os: windows-2022, arch: msvc, msystem: mingw64, debug: false, suffix: "-md" },
29
27
{ os: windows-2022, arch: msvs, msystem: mingw64, debug: false, suffix: "" },
30
28
]
31
29
steps :
32
30
- name : Checkout source
33
- uses : actions/checkout@v3
31
+ uses : actions/checkout@v4
34
32
with :
35
33
path : ${{ github.event.repository.name }}
36
34
- name : Checkout coinbrew
37
- uses : actions/checkout@v3
35
+ uses : actions/checkout@v4
38
36
with :
39
37
repository : coin-or/coinbrew
40
38
path : coinbrew
43
41
uses : ilammy/msvc-dev-cmd@v1
44
42
- name : Set up for msvs
45
43
if : ${{ matrix.arch == 'msvs' }}
46
- uses : microsoft/setup-msbuild@v1.1
44
+ uses : microsoft/setup-msbuild@v2
47
45
- name : Set correct host flag and install requirements
48
46
if : ${{ matrix.arch != 'msvc' && matrix.arch != 'msvs' }}
49
47
run : |
@@ -115,7 +113,7 @@ jobs:
115
113
cp ${{ github.event.repository.name }}/LICENSE dist/
116
114
shell : msys2 {0}
117
115
- name : Upload failed build directory
118
- uses : actions/upload-artifact@v3
116
+ uses : actions/upload-artifact@v4
119
117
if : failure()
120
118
with :
121
119
name : ${{ matrix.os}}-{{ matrix.arch }}-debug=${{ matrix.debug }}-failedbuild
@@ -133,9 +131,9 @@ jobs:
133
131
if : ${{ matrix.arch != 'msvc' }}
134
132
- name : Upload artifact
135
133
if : ${{ github.event_name == 'pull_request'}}
136
- uses : actions/upload-artifact@v3
134
+ uses : actions/upload-artifact@v4
137
135
with :
138
- name : ${{ github.event.repository.name }}-${{ github.head_ref }}-${{ env.package_suffix }}
136
+ name : ${{ github.event.repository.name }}-${{ env.package_suffix }}
139
137
path : dist
140
138
if-no-files-found : error
141
139
- name : Zip up dist contents for release
0 commit comments