Skip to content

Commit ac463f6

Browse files
committed
Try conda instead of micromamba
1 parent 76ab2fb commit ac463f6

File tree

2 files changed

+25
-10
lines changed

2 files changed

+25
-10
lines changed

.github/workflows/python.yml

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -288,22 +288,34 @@ jobs:
288288
env:
289289
# We can invalidate the current cache by updating this.
290290
CACHE_VERSION: "2025-09-16.1"
291-
- name: Install and setup micromamba
291+
- name: Install conda
292292
shell: cmd
293293
run: |
294-
curl -L -o micromamba.exe https://github.com/mamba-org/micromamba-releases/releases/download/2.4.0-0/micromamba-win-64.exe
295-
micromamba.exe shell init -s cmd.exe -r C:\micromamba
296-
micromamba.exe create -n pyarrow-dev -f ".\ci\conda_env_python.txt" -y
297-
dir "C:\micromamba"
294+
curl -L https://github.com/conda-forge/miniforge/releases/download/25.11.0-0/Miniforge3-25.11.0-0-Windows-x86_64.exe -o miniforge.exe
295+
start /wait "" .\miniforge.exe /S /D=C:\miniforge
296+
del .\miniforge.exe
297+
C:\miniforge\Scripts\conda.exe init cmd.exe
298+
- name: Update PATH to include conda
299+
shell: cmd
300+
run: |
301+
echo C:\miniforge\Scripts;C:\miniforge\Library\bin;C:\miniforge\condabin>> %GITHUB_PATH%
302+
- name: Create conda environment
303+
shell: cmd
304+
run: |
305+
echo %PATH%
306+
conda init cmd.exe
307+
conda env create -n pyarrow-dev -f .\ci\conda_env_python.txt -y
298308
- name: Build Arrow C++ and PyArrow
299309
shell: cmd
310+
env:
311+
PYTHON_CMD: "python"
300312
run: |
301-
call "C:\micromamba\condabin\micromamba.bat"
302-
micromamba activate pyarrow-dev || exit /B 1
303-
call "ci\scripts\python_build.bat" %cd% "C:\micromamba"
313+
call activate pyarrow-dev || exit /B 1
314+
call "ci\scripts\python_build.bat" %cd% "%CONDA_PREFIX%"
304315
- name: Test PyArrow
305316
shell: cmd
317+
env:
318+
PYTHON_CMD: "python"
306319
run: |
307-
call "C:\micromamba\condabin\micromamba.bat"
308-
micromamba activate pyarrow-dev || exit /B 1
320+
call activate pyarrow-dev
309321
call "ci\scripts\python_test.bat" %cd%

ci/scripts/python_build.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ echo C++ source dir is %CPP_SOURCE_DIR%
2525

2626
echo Building for Windows ...
2727

28+
echo %PATH%
29+
2830
@REM List installed Pythons
2931
py -0p
3032

@@ -33,6 +35,7 @@ py -0p
3335
@REM Setup MSVC environment
3436

3537
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
38+
echo %PATH%
3639
@echo on
3740

3841
echo "=== CCACHE Stats before build ==="

0 commit comments

Comments
 (0)