53
53
- name : move tarball to top level
54
54
run : |
55
55
mv _build/xf86-input-wacom-*tar.bz2 .
56
- - uses : actions/upload-artifact@v3
56
+ - uses : actions/upload-artifact@v4
57
+ if : ${{ matrix.compiler == 'gcc' }}
57
58
with :
58
59
name : tarball
59
60
path : xf86-input-wacom-*tar.bz2
84
85
env :
85
86
CC : ${{matrix.compiler}}
86
87
# Capture all the meson logs, even if we failed
87
- - uses : actions/upload-artifact@v3
88
+ - uses : actions/upload-artifact@v4
88
89
if : ${{ always() }} # even if we fail
89
90
with :
90
91
name : meson-test-logs-${{github.job}}-${{matrix.compiler}}-${{matrix.meson_options}}
@@ -107,7 +108,7 @@ jobs:
107
108
with :
108
109
meson_args : -Dauto_features=enabled
109
110
# Capture all the meson logs, even if we failed
110
- - uses : actions/upload-artifact@v3
111
+ - uses : actions/upload-artifact@v4
111
112
if : ${{ always() }} # even if we fail
112
113
with :
113
114
name : meson-test-logs-${{github.job}}
@@ -130,7 +131,7 @@ jobs:
130
131
with :
131
132
apt : $UBUNTU_PACKAGES
132
133
- name : fetch tarball from previous job(s)
133
- uses : actions/download-artifact@v3
134
+ uses : actions/download-artifact@v4
134
135
with :
135
136
name : tarball
136
137
- name : extract tarball
@@ -160,7 +161,7 @@ jobs:
160
161
apt : $UBUNTU_PACKAGES
161
162
pip : $PIP_PACKAGES
162
163
- name : fetch tarball from previous job(s)
163
- uses : actions/download-artifact@v3
164
+ uses : actions/download-artifact@v4
164
165
with :
165
166
name : tarball
166
167
- name : extract tarball
@@ -175,7 +176,7 @@ jobs:
175
176
meson_args : -Dauto_features=enabled --prefix="$INSTALLDIR"
176
177
ninja_args : test
177
178
# Capture all the meson logs, even if we failed
178
- - uses : actions/upload-artifact@v3
179
+ - uses : actions/upload-artifact@v4
179
180
if : ${{ always() }} # even if we fail
180
181
with :
181
182
name : tarball-build-meson-test-logs
@@ -192,7 +193,7 @@ jobs:
192
193
- name : Checkout the repo
193
194
uses : actions/checkout@v3
194
195
- name : fetch tarball from previous job(s)
195
- uses : actions/download-artifact@v3
196
+ uses : actions/download-artifact@v4
196
197
with :
197
198
name : tarball
198
199
- name : list git files
0 commit comments