You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# So, for now, we skip the `incremental=false` tests on Julia 1.11 and 1.12
109
-
@warn"This is Julia $(VERSION.major).$(VERSION.minor); skipping incremental=false test due to known bug: #976 (for 1.11), issue TODO (for 1.12)"
115
+
# But ONLY on GHA (GitHub Actions).
116
+
# On PkgEval, we do run these tests. This is intentional - we want PkgEval to
117
+
# detect regressions, as well as fixes for those regressions.
118
+
@warn"[GHA CI] This is Julia $(VERSION.major).$(VERSION.minor); skipping incremental=false test due to known bug: #976 (for 1.11), issue TODO (for 1.12)"
110
119
@test_skipfalse
111
120
continue
112
121
end
113
122
if is_slow_ci
123
+
@warn"Skipping the (incremental=false, filter_stdlibs=false) test because this is \"slow CI\""
# On Julia 1.12, `incremental=false` is currently broken when doing `create_library()`.
219
231
# 1.12: No GitHub issue yet.
220
232
# So, for now, we skip the `incremental=false` tests on Julia 1.12 when doing `create_library()`.
221
-
@warn"This is Julia $(VERSION.major).$(VERSION.minor); skipping incremental=false test when doing `create_library()` due to known bug: issue TODO (for 1.12)"
233
+
# But ONLY on GHA (GitHub Actions).
234
+
# On PkgEval, we do run these tests. This is intentional - we want PkgEval to
235
+
# detect regressions, as well as fixes for those regressions.
236
+
@warn"[GHA CI] This is Julia $(VERSION.major).$(VERSION.minor); skipping incremental=false test when doing `create_library()` due to known bug: issue TODO (for 1.12)"
222
237
@test_skipfalse
223
238
else
224
239
# Test library creation
@@ -243,11 +258,14 @@ end
243
258
244
259
# Test creating an empty sysimage
245
260
if!is_slow_ci
246
-
if is_julia_1_12
261
+
ifis_gha_ci &&is_julia_1_12
247
262
# On Julia 1.12, `incremental=false` is currently broken when doing `create_library()`.
248
263
# 1.12: No GitHub issue yet.
249
264
# So, for now, we skip the `incremental=false` tests on Julia 1.12 when doing `create_library()`.
250
-
@warn"This is Julia $(VERSION.major).$(VERSION.minor); skipping incremental=false test when doing `create_library()` due to known bug: issue TODO (for 1.12)"
265
+
# But ONLY on GHA (GitHub Actions).
266
+
# On PkgEval, we do run these tests. This is intentional - we want PkgEval to
267
+
# detect regressions, as well as fixes for those regressions.
268
+
@warn"[GHA CI] This is Julia $(VERSION.major).$(VERSION.minor); skipping incremental=false test when doing `create_library()` due to known bug: issue TODO (for 1.12)"
0 commit comments