Closed
Bug 1847898
Opened 2 years ago
Closed 2 years ago
mach vendor for fdlibm doesn't work on git
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
118 Branch
| Tracking | Status | |
|---|---|---|
| firefox118 | --- | fixed |
People
(Reporter: arai, Assigned: arai)
References
Details
Attachments
(2 files)
Run the following on git checkout:
./mach vendor modules/fdlibm/moz.yaml -r bd5e624a861433dee76fe00a8acedc9564425332 -f --patch-mode=none
got the output:
Latest commit is bd5e624a861433dee76fe00a8acedc9564425332 from 2022-12-13T19:21:13Z
...
Upstream bd5e624a861433dee76fe00a8acedc9564425332 hasn't modified files locally.
it's due to spurious_check uses staged mode to list files, which is empty on git.
def spurious_check(self, revision, ignore_modified):
changed_files = set(
[
os.path.abspath(f)
for f in self.repository.get_changed_files(mode="staged")
]
)
| Assignee | ||
Comment 1•2 years ago
|
||
Updated•2 years ago
|
Attachment #9348133 -
Attachment description: Bug 1847898 - Do not use staged mode to list changed files. r?tjr! → Bug 1847898 - Part 1: Move individiual update's fetch step into separate function. r?tjr!
| Assignee | ||
Comment 2•2 years ago
|
||
Depends on D185792
Pushed by arai_a@mac.com:
https://hg.mozilla.org/integration/autoland/rev/1a30a668a87c
Part 1: Move individiual update's fetch step into separate function. r=tjr
https://hg.mozilla.org/integration/autoland/rev/ca6eb6e813a9
Part 2: Merge process_regular and process_individual implementation. r=tjr
Comment 4•2 years ago
|
||
| bugherder | ||
https://hg.mozilla.org/mozilla-central/rev/1a30a668a87c
https://hg.mozilla.org/mozilla-central/rev/ca6eb6e813a9
Status: ASSIGNED → RESOLVED
Closed: 2 years ago
status-firefox118:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 118 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•