Uh oh!
There was an error while loading. Please reload this page.
ARROW-12626: [C++] Support toolchain xsimd, update toolchain version to version 8.1.0 - #13244
Conversation
6db3a2e to
d7d3101Comparecyb70289
commented
May 30, 2022
@kou, is there convenient way to verify if this pr may break packaging and release in github UI? |
kou
commented
May 30, 2022
We can use |
cyb70289
commented
May 30, 2022
@github-actions crossbow submit -g nightly-packaging -g nightly-release |
This comment was marked as outdated.
This comment was marked as outdated.
Uh oh!
There was an error while loading. Please reload this page.
9af5ea8 to
4a006adComparecyb70289
commented
May 30, 2022
@github-actions crossbow submit -g nightly-packaging -g nightly-release |
Revision: 4a006add27daf95fbad6393ff82528279ee3378f Submitted crossbow builds: ursacomputing/crossbow @ actions-8103008ca7 |
cyb70289
commented
May 31, 2022
There are many xsimd related errors, @kou, will you comment perferred fixes? Thanks.
|
wesm
commented
May 31, 2022
As I recall, the project was pinned to a bundled version that was a few weeks before 8.1 was released. Feel free to take control of this PR from me |
kou
commented
May 31, 2022
I'll push fixes later. Please wait for a while. |
4a006ad to
902e81cComparekou
commented
Jun 1, 2022
@github-actions crossbow submit conan-* conda-linux-gcc-* |
Revision: 902e81c2914a362b168bdcc0a0f1d500cbb2bd0e Submitted crossbow builds: ursacomputing/crossbow @ actions-76b5b8c64b |
kou
commented
Jun 1, 2022
@github-actions crossbow submit conda-osx-* conda-win-* |
Revision: addd3ac86d496ef35888777fed2b34cec0bd4150 Submitted crossbow builds: ursacomputing/crossbow @ actions-603614ae49 |
kou
commented
Jun 1, 2022
I've opened a pull request to update xsimd in vcpkg: microsoft/vcpkg#25030 |
kou
commented
Jun 1, 2022
@github-actions crossbow submit conan-* |
Revision: 309e42a0d3ac52a58f07471f1327c0c42426d93d Submitted crossbow builds: ursacomputing/crossbow @ actions-983084a5d3
|
kou
commented
Jun 1, 2022
|
kou
commented
Jun 3, 2022
@github-actions crossbow submit wheel-* |
Revision: d100b397e9fbc7bf359688146c1e1a74a2980717 Submitted crossbow builds: ursacomputing/crossbow @ actions-9de9fb80c7 |
da2798f to
160ec95Comparekou
commented
Jun 3, 2022
@github-actions crossbow submit wheel-* |
Revision: 160ec959af76ed6ef6073ac00fa5fe1e7d49db18 Submitted crossbow builds: ursacomputing/crossbow @ actions-082fa4d9b1 |
kou
commented
Jun 3, 2022
@github-actions crossbow java-jars |
kou
commented
Jun 12, 2022
@github-actions crossbow submit wheel-windows-cp38-amd64 |
Revision: 21b3427 Submitted crossbow builds: ursacomputing/crossbow @ actions-729a5ecccd
|
kou
commented
Jun 12, 2022
@github-actions crossbow submit wheel-windows-cp38-amd64 |
Revision: 083fdba Submitted crossbow builds: ursacomputing/crossbow @ actions-1fd3333176
|
kou
commented
Jun 12, 2022
@github-actions crossbow submit wheel-windows-cp38-amd64 |
Revision: 2c2cf17 Submitted crossbow builds: ursacomputing/crossbow @ actions-f57e2a50a4
|
kou
commented
Jun 12, 2022
@github-actions crossbow submit wheel-windows-cp38-amd64 |
Revision: 080fc8f Submitted crossbow builds: ursacomputing/crossbow @ actions-c871540910
|
kou
commented
Jun 12, 2022
@github-actions crossbow submit wheel-windows-cp38-amd64 |
Revision: be9daf2 Submitted crossbow builds: ursacomputing/crossbow @ actions-d8403e63aa
|
kou
commented
Jun 12, 2022
@github-actions crossbow submit wheel-windows-cp38-amd64 |
Revision: e5bf8ca Submitted crossbow builds: ursacomputing/crossbow @ actions-c62ae2d49f
|
kou
commented
Jun 13, 2022
@github-actions crossbow submit wheel-windows-cp38-amd64 |
Revision: 4edd5b0 Submitted crossbow builds: ursacomputing/crossbow @ actions-3056f2001d
|
kou
commented
Jun 13, 2022
@github-actions crossbow submit wheel-windows-* |
Revision: 4edd5b0 Submitted crossbow builds: ursacomputing/crossbow @ actions-aa101b6926
|
assignUser
commented
Jun 13, 2022
2h 51min vs 1h 🥳 🚀 |
This reverts commit cae313b.
kou
commented
Jun 13, 2022
if! docker pull;then
docker build
fi
docker runThis is ready to merge now. I'll merge this tomorrow. |
This also updates pinned vcpkg to use xsimd 8.1.0.
This also implements auto python-wheel-windows-vs2017 image update mechanism.
We have a problem of "docker build" on Windows. "docker build" doesn't reuse pulled
image as caches. "docker build" always rebuilds an image. This implements manual
reuse mechanism like the following:
But this doesn't work when ci/docker/python-wheel-windows-vs2017.dockerfile is updated
but pinned vcpkg revision isn't changed. In the case, "docker build" isn't run because
"docker pull" is succeeded.
To work this mechanism, this introduces "PYTHON_WHEEL_WINDOWS_IMAGE_REVISION".
We must bump it manually when we update ci/docker/python-wheel-windows-vs2017.dockerfile.
"PYTHON_WHEEL_WINDOWS_IMAGE_REVISION" is used in tag name. So "docker pull"
is failed with new "PYTHON_WHEEL_WINDOWS_IMAGE_REVISION" and then "docker build"
is used.