Skip to content

Commit 235d6d7

Browse files
committed
[ci] try to fix commit_artifacts step (#27817)
Tries to fix the failure from https://github.com/facebook/react/actions/runs/7142005723/job/19450371514 I think it failed because we cannot `mv` into a folder with existing files or folders. DiffTrain build for [d3ed07b](d3ed07b)
1 parent 0f81c6b commit 235d6d7

17 files changed

+534
-92
lines changed

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b36ae8d7aab94dae285d9d6a1c5f004e6fc19fc9
1+
d3ed07bce036df61fbce52151f1531a5762ba6d6

compiled/facebook-www/React-dev.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if (__DEV__) {
2424
) {
2525
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
2626
}
27-
var ReactVersion = "18.3.0-www-classic-32c0f8a4";
27+
var ReactVersion = "18.3.0-www-classic-a5f5272e";
2828

2929
// ATTENTION
3030
// When adding new symbols to this file,

compiled/facebook-www/ReactART-dev.classic.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if (__DEV__) {
6666
return self;
6767
}
6868

69-
var ReactVersion = "18.3.0-www-classic-324338d3";
69+
var ReactVersion = "18.3.0-www-classic-a377dc6f";
7070

7171
var LegacyRoot = 0;
7272
var ConcurrentRoot = 1;
@@ -2040,7 +2040,9 @@ if (__DEV__) {
20402040
// to unwrap uncached promises.
20412041
// TODO: Write a test for this
20422042

2043-
var lanes = pendingLanes & ~RetryLanes;
2043+
var lanes = enableRetryLaneExpiration
2044+
? pendingLanes
2045+
: pendingLanes & ~RetryLanes;
20442046

20452047
while (lanes > 0) {
20462048
var index = pickArbitraryLaneIndex(lanes);

compiled/facebook-www/ReactART-dev.modern.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if (__DEV__) {
6666
return self;
6767
}
6868

69-
var ReactVersion = "18.3.0-www-modern-660048ac";
69+
var ReactVersion = "18.3.0-www-modern-10e22a22";
7070

7171
var LegacyRoot = 0;
7272
var ConcurrentRoot = 1;
@@ -2037,7 +2037,9 @@ if (__DEV__) {
20372037
// to unwrap uncached promises.
20382038
// TODO: Write a test for this
20392039

2040-
var lanes = pendingLanes & ~RetryLanes;
2040+
var lanes = enableRetryLaneExpiration
2041+
? pendingLanes
2042+
: pendingLanes & ~RetryLanes;
20412043

20422044
while (lanes > 0) {
20432045
var index = pickArbitraryLaneIndex(lanes);

compiled/facebook-www/ReactART-prod.classic.js

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2456,22 +2456,25 @@ function processRootScheduleInMicrotask() {
24562456
flushSyncWorkAcrossRoots_impl(!1);
24572457
}
24582458
function scheduleTaskForRootDuringMicrotask(root, currentTime) {
2459+
var pendingLanes = root.pendingLanes,
2460+
suspendedLanes = root.suspendedLanes,
2461+
pingedLanes = root.pingedLanes,
2462+
expirationTimes = root.expirationTimes;
24592463
for (
2460-
var suspendedLanes = root.suspendedLanes,
2461-
pingedLanes = root.pingedLanes,
2462-
expirationTimes = root.expirationTimes,
2463-
lanes = root.pendingLanes & -62914561;
2464-
0 < lanes;
2464+
pendingLanes = enableRetryLaneExpiration
2465+
? pendingLanes
2466+
: pendingLanes & -62914561;
2467+
0 < pendingLanes;
24652468

24662469
) {
2467-
var index$2 = 31 - clz32(lanes),
2470+
var index$2 = 31 - clz32(pendingLanes),
24682471
lane = 1 << index$2,
24692472
expirationTime = expirationTimes[index$2];
24702473
if (-1 === expirationTime) {
24712474
if (0 === (lane & suspendedLanes) || 0 !== (lane & pingedLanes))
24722475
expirationTimes[index$2] = computeExpirationTime(lane, currentTime);
24732476
} else expirationTime <= currentTime && (root.expiredLanes |= lane);
2474-
lanes &= ~lane;
2477+
pendingLanes &= ~lane;
24752478
}
24762479
currentTime = workInProgressRoot;
24772480
suspendedLanes = workInProgressRootRenderLanes;
@@ -10236,7 +10239,7 @@ var slice = Array.prototype.slice,
1023610239
return null;
1023710240
},
1023810241
bundleType: 0,
10239-
version: "18.3.0-www-classic-61fbad1d",
10242+
version: "18.3.0-www-classic-62f2e6c9",
1024010243
rendererPackageName: "react-art"
1024110244
};
1024210245
var internals$jscomp$inline_1322 = {
@@ -10267,7 +10270,7 @@ var internals$jscomp$inline_1322 = {
1026710270
scheduleRoot: null,
1026810271
setRefreshHandler: null,
1026910272
getCurrentFiber: null,
10270-
reconcilerVersion: "18.3.0-www-classic-61fbad1d"
10273+
reconcilerVersion: "18.3.0-www-classic-62f2e6c9"
1027110274
};
1027210275
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1027310276
var hook$jscomp$inline_1323 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

compiled/facebook-www/ReactART-prod.modern.js

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2266,22 +2266,25 @@ function processRootScheduleInMicrotask() {
22662266
flushSyncWorkAcrossRoots_impl(!1);
22672267
}
22682268
function scheduleTaskForRootDuringMicrotask(root, currentTime) {
2269+
var pendingLanes = root.pendingLanes,
2270+
suspendedLanes = root.suspendedLanes,
2271+
pingedLanes = root.pingedLanes,
2272+
expirationTimes = root.expirationTimes;
22692273
for (
2270-
var suspendedLanes = root.suspendedLanes,
2271-
pingedLanes = root.pingedLanes,
2272-
expirationTimes = root.expirationTimes,
2273-
lanes = root.pendingLanes & -62914561;
2274-
0 < lanes;
2274+
pendingLanes = enableRetryLaneExpiration
2275+
? pendingLanes
2276+
: pendingLanes & -62914561;
2277+
0 < pendingLanes;
22752278

22762279
) {
2277-
var index$2 = 31 - clz32(lanes),
2280+
var index$2 = 31 - clz32(pendingLanes),
22782281
lane = 1 << index$2,
22792282
expirationTime = expirationTimes[index$2];
22802283
if (-1 === expirationTime) {
22812284
if (0 === (lane & suspendedLanes) || 0 !== (lane & pingedLanes))
22822285
expirationTimes[index$2] = computeExpirationTime(lane, currentTime);
22832286
} else expirationTime <= currentTime && (root.expiredLanes |= lane);
2284-
lanes &= ~lane;
2287+
pendingLanes &= ~lane;
22852288
}
22862289
currentTime = workInProgressRoot;
22872290
suspendedLanes = workInProgressRootRenderLanes;
@@ -9905,7 +9908,7 @@ var slice = Array.prototype.slice,
99059908
return null;
99069909
},
99079910
bundleType: 0,
9908-
version: "18.3.0-www-modern-b2abf50e",
9911+
version: "18.3.0-www-modern-bc6ddf84",
99099912
rendererPackageName: "react-art"
99109913
};
99119914
var internals$jscomp$inline_1302 = {
@@ -9936,7 +9939,7 @@ var internals$jscomp$inline_1302 = {
99369939
scheduleRoot: null,
99379940
setRefreshHandler: null,
99389941
getCurrentFiber: null,
9939-
reconcilerVersion: "18.3.0-www-modern-b2abf50e"
9942+
reconcilerVersion: "18.3.0-www-modern-bc6ddf84"
99409943
};
99419944
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
99429945
var hook$jscomp$inline_1303 = __REACT_DEVTOOLS_GLOBAL_HOOK__;

compiled/facebook-www/ReactDOM-dev.classic.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2209,7 +2209,9 @@ if (__DEV__) {
22092209
// to unwrap uncached promises.
22102210
// TODO: Write a test for this
22112211

2212-
var lanes = pendingLanes & ~RetryLanes;
2212+
var lanes = enableRetryLaneExpiration
2213+
? pendingLanes
2214+
: pendingLanes & ~RetryLanes;
22132215

22142216
while (lanes > 0) {
22152217
var index = pickArbitraryLaneIndex(lanes);
@@ -34891,7 +34893,7 @@ if (__DEV__) {
3489134893
return root;
3489234894
}
3489334895

34894-
var ReactVersion = "18.3.0-www-classic-4a10d189";
34896+
var ReactVersion = "18.3.0-www-classic-d008a2fd";
3489534897

3489634898
function createPortal$1(
3489734899
children,

compiled/facebook-www/ReactDOM-dev.modern.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1564,7 +1564,9 @@ if (__DEV__) {
15641564
// to unwrap uncached promises.
15651565
// TODO: Write a test for this
15661566

1567-
var lanes = pendingLanes & ~RetryLanes;
1567+
var lanes = enableRetryLaneExpiration
1568+
? pendingLanes
1569+
: pendingLanes & ~RetryLanes;
15681570

15691571
while (lanes > 0) {
15701572
var index = pickArbitraryLaneIndex(lanes);
@@ -34712,7 +34714,7 @@ if (__DEV__) {
3471234714
return root;
3471334715
}
3471434716

34715-
var ReactVersion = "18.3.0-www-modern-152469ca";
34717+
var ReactVersion = "18.3.0-www-modern-c3c79046";
3471634718

3471734719
function createPortal$1(
3471834720
children,

compiled/facebook-www/ReactDOM-prod.classic.js

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3183,22 +3183,25 @@ function processRootScheduleInMicrotask() {
31833183
flushSyncWorkAcrossRoots_impl(!1);
31843184
}
31853185
function scheduleTaskForRootDuringMicrotask(root, currentTime) {
3186+
var pendingLanes = root.pendingLanes,
3187+
suspendedLanes = root.suspendedLanes,
3188+
pingedLanes = root.pingedLanes,
3189+
expirationTimes = root.expirationTimes;
31863190
for (
3187-
var suspendedLanes = root.suspendedLanes,
3188-
pingedLanes = root.pingedLanes,
3189-
expirationTimes = root.expirationTimes,
3190-
lanes = root.pendingLanes & -62914561;
3191-
0 < lanes;
3191+
pendingLanes = enableRetryLaneExpiration
3192+
? pendingLanes
3193+
: pendingLanes & -62914561;
3194+
0 < pendingLanes;
31923195

31933196
) {
3194-
var index$2 = 31 - clz32(lanes),
3197+
var index$2 = 31 - clz32(pendingLanes),
31953198
lane = 1 << index$2,
31963199
expirationTime = expirationTimes[index$2];
31973200
if (-1 === expirationTime) {
31983201
if (0 === (lane & suspendedLanes) || 0 !== (lane & pingedLanes))
31993202
expirationTimes[index$2] = computeExpirationTime(lane, currentTime);
32003203
} else expirationTime <= currentTime && (root.expiredLanes |= lane);
3201-
lanes &= ~lane;
3204+
pendingLanes &= ~lane;
32023205
}
32033206
currentTime = workInProgressRoot;
32043207
suspendedLanes = workInProgressRootRenderLanes;
@@ -16540,7 +16543,7 @@ Internals.Events = [
1654016543
var devToolsConfig$jscomp$inline_1796 = {
1654116544
findFiberByHostInstance: getClosestInstanceFromNode,
1654216545
bundleType: 0,
16543-
version: "18.3.0-www-classic-55fb1194",
16546+
version: "18.3.0-www-classic-3868b5c2",
1654416547
rendererPackageName: "react-dom"
1654516548
};
1654616549
var internals$jscomp$inline_2142 = {
@@ -16570,7 +16573,7 @@ var internals$jscomp$inline_2142 = {
1657016573
scheduleRoot: null,
1657116574
setRefreshHandler: null,
1657216575
getCurrentFiber: null,
16573-
reconcilerVersion: "18.3.0-www-classic-55fb1194"
16576+
reconcilerVersion: "18.3.0-www-classic-3868b5c2"
1657416577
};
1657516578
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1657616579
var hook$jscomp$inline_2143 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -16907,4 +16910,4 @@ exports.useFormState = function () {
1690716910
exports.useFormStatus = function () {
1690816911
throw Error(formatProdErrorMessage(248));
1690916912
};
16910-
exports.version = "18.3.0-www-classic-55fb1194";
16913+
exports.version = "18.3.0-www-classic-3868b5c2";

compiled/facebook-www/ReactDOM-prod.modern.js

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3080,22 +3080,25 @@ function processRootScheduleInMicrotask() {
30803080
flushSyncWorkAcrossRoots_impl(!1);
30813081
}
30823082
function scheduleTaskForRootDuringMicrotask(root, currentTime) {
3083+
var pendingLanes = root.pendingLanes,
3084+
suspendedLanes = root.suspendedLanes,
3085+
pingedLanes = root.pingedLanes,
3086+
expirationTimes = root.expirationTimes;
30833087
for (
3084-
var suspendedLanes = root.suspendedLanes,
3085-
pingedLanes = root.pingedLanes,
3086-
expirationTimes = root.expirationTimes,
3087-
lanes = root.pendingLanes & -62914561;
3088-
0 < lanes;
3088+
pendingLanes = enableRetryLaneExpiration
3089+
? pendingLanes
3090+
: pendingLanes & -62914561;
3091+
0 < pendingLanes;
30893092

30903093
) {
3091-
var index$1 = 31 - clz32(lanes),
3094+
var index$1 = 31 - clz32(pendingLanes),
30923095
lane = 1 << index$1,
30933096
expirationTime = expirationTimes[index$1];
30943097
if (-1 === expirationTime) {
30953098
if (0 === (lane & suspendedLanes) || 0 !== (lane & pingedLanes))
30963099
expirationTimes[index$1] = computeExpirationTime(lane, currentTime);
30973100
} else expirationTime <= currentTime && (root.expiredLanes |= lane);
3098-
lanes &= ~lane;
3101+
pendingLanes &= ~lane;
30993102
}
31003103
currentTime = workInProgressRoot;
31013104
suspendedLanes = workInProgressRootRenderLanes;
@@ -16066,7 +16069,7 @@ Internals.Events = [
1606616069
var devToolsConfig$jscomp$inline_1755 = {
1606716070
findFiberByHostInstance: getClosestInstanceFromNode,
1606816071
bundleType: 0,
16069-
version: "18.3.0-www-modern-832f3e77",
16072+
version: "18.3.0-www-modern-d6dd9d20",
1607016073
rendererPackageName: "react-dom"
1607116074
};
1607216075
var internals$jscomp$inline_2106 = {
@@ -16097,7 +16100,7 @@ var internals$jscomp$inline_2106 = {
1609716100
scheduleRoot: null,
1609816101
setRefreshHandler: null,
1609916102
getCurrentFiber: null,
16100-
reconcilerVersion: "18.3.0-www-modern-832f3e77"
16103+
reconcilerVersion: "18.3.0-www-modern-d6dd9d20"
1610116104
};
1610216105
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1610316106
var hook$jscomp$inline_2107 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -16362,4 +16365,4 @@ exports.useFormState = function () {
1636216365
exports.useFormStatus = function () {
1636316366
throw Error(formatProdErrorMessage(248));
1636416367
};
16365-
exports.version = "18.3.0-www-modern-832f3e77";
16368+
exports.version = "18.3.0-www-modern-d6dd9d20";

0 commit comments

Comments
 (0)