raulcd commented on code in PR #48539:
URL: https://github.com/apache/arrow/pull/48539#discussion_r2704441131


##########
dev/tasks/python-wheels/github.windows.arm64.yml:
##########
@@ -0,0 +1,80 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+{% import 'macros.jinja' as macros with context %}
+
+{{ macros.github_header() }}
+
+jobs:
+  build:
+    name: "Build wheel for Windows ARM64"
+    runs-on: "{{ runs_on }}"
+    timeout-minutes: 240
+    env:
+      PYTHON_CMD: "py -{{ python_version }}-arm64"
+      CMAKE_BUILD_TYPE: release
+    steps:
+      {{ macros.github_checkout_arrow()|indent }}
+      - name: Setup Python
+        uses: actions/setup-python@v5
+        with:
+          python-version: "{{ python_version }}"
+          architecture: "arm64"
+
+      - name: Install Python build dependencies
+        shell: cmd
+        run: |
+          %PYTHON_CMD% -m pip install --upgrade pip
+          %PYTHON_CMD% -m pip install cython numpy setuptools_scm setuptools 
wheel
+          
+      - name: Cache vcpkg dependencies
+        uses: actions/cache@v4
+        with:
+          path: C:\vcpkg\installed
+          key: "{% raw %}vcpkg-installed-windows-arm64-${{ 
hashFiles('arrow/ci/vcpkg/vcpkg.json') }}{% endraw %}"      
+          restore-keys: vcpkg-installed-windows-arm64-
+
+      - name: Install vcpkg dependencies
+        shell: cmd
+        run: |
+          cd arrow\ci\vcpkg
+          C:\vcpkg\vcpkg.exe install ^
+            --binarysource="clear;x-gha,readwrite" ^
+            --x-install-root=C:\vcpkg\installed ^
+            --x-manifest-root=. ^
+            --x-feature=flight ^
+            --x-feature=json ^
+            --x-feature=gcs ^
+            --x-feature=orc ^
+            --x-feature=parquet ^
+            --x-feature=s3
+            
+      - name: Build Arrow C++ and PyArrow wheel
+        shell: cmd
+        env:
+          ARCH: "ARM64"
+          SETUPTOOLS_SCM_PRETEND_VERSION: "{{ arrow.no_rc_version }}"
+        run: |
+          call "arrow\ci\scripts\python_wheel_windows_build.bat"
+          

Review Comment:
   We should also run tests to validate the built wheel is passing tests as we 
do with all the other wheel jobs.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to