| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
Review requested:
|
Sorry, something went wrong.
|
@lemire do you think the differences are adding in this PR mean the updater is not working correctly ? |
Sorry, something went wrong.
|
It's not the first time I see weird behavior of accumulated updates in the same PR. I would recommend to change the workflows to use peter-evans/create-pull-request, as I did for V8 patch updates. |
Sorry, something went wrong.
|
I did not investigate the issue further but I am quite confident that issue is not upstream (in simdjson). The way the updater works is that it pulls in release zip files. This should be fine. Yet, somehow, we end up with the wrong file !!! Well. Not exactly. Both files have this line in it... #define SIMDJSON_VERSION "3.11.6"So we are pulling the right version. Strangely, we copy two files (.h and .cpp) but only the .h seems broken. |
Sorry, something went wrong.
|
The script is not exactly mysterious, this should work. echo "Fetching simdjson source archive..."
curl -sL -o "$SIMDJSON_ZIP" "https://github.com/simdjson/simdjson/archive/refs/tags/$SIMDJSON_REF.zip"
unzip "$SIMDJSON_ZIP"
cd "simdjson-$NEW_VERSION"
mv "singleheader/simdjson.h" "$DEPS_DIR/simdjson"
mv "singleheader/simdjson.cpp" "$DEPS_DIR/simdjson"
mv "LICENSE" "$DEPS_DIR/simdjson" |
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
|
Could we close this PR, and fix the automation instead? If we land this in several commits, it means 8c0e4cb will be on main, which doesn't build, making bisecting needlessly harder. It would be also more useful to validate the automation works correctly. |
Sorry, something went wrong.
I expected this PR to be squashed and merged. Isn't this so? |
Sorry, something went wrong.
|
By default, it would use the first commit's message – and therefor land a commit with the wrong version. However, because it has the commit-queue-rebase Add this label to allow the Commit Queue to land a PR in several commits. label, it will not squash this time. But anyway, we can land it manually, but my point on "we should validate that the automation is actually fixed" still stands – no strong feelings though, feel free to disagree. |
Sorry, something went wrong.
For a month, the automated update has been pushing broken code: I have contributed something that might fix the updates: If you ask me, I will just close this issue (the one we are on). Is that what you recommend? |
Sorry, something went wrong.
Yes exactly, good to hear we do align (sorry if I wasn't clear, written communication is hard sometimes :D) |
Sorry, something went wrong.
|
Given the discussion it's not clear if this PR is actually ready to move forward. I'm going to remove the author ready and commit-queue labels here just in case. If this is ready to land, please just follow up with a comment making that clear. |
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
There was a problem hiding this comment.
automated PR is fixed
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
I pulled the automated update branch #56250 and I ran the manual update script ./dep_updaters/update-simdjson.sh after disabling this code so that it will still run despite being at the version 3.11.6 already:
Doing so should not change anything: if you update to the current version, you should simply redownload the same files.
I get this pull request. Observe how the result differs: it should not differ.