8000 fixed ARM CI · spsforks/pythonnet-pythonnet@a9e757f · GitHub
[go: up one dir, main page]

Skip to content

Commit a9e757f

Browse files
committed
fixed ARM CI
1 parent 22d07dd commit a9e757f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ARM.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,25 +27,25 @@ jobs:
2727
2828
- name: Install dependencies
2929
run: |
30-
pip install -r requirements.txt
31-
pip install pytest numpy # for tests
30+
pip3.8 install -r requirements.txt
31+
pip3.8 install pytest numpy # for tests
3232
3333
- name: Build and Install
3434
run: |
35-
pip install -v .
35+
pip3.8 install -v .
3636
3737
- name: Set Python DLL path (non Windows)
3838
run: |
39-
echo PYTHONNET_PYDLL=$(python -m find_libpython) >> $GITHUB_ENV
39+
echo PYTHONNET_PYDLL=$(python3.8 -m find_libpython) >> $GITHUB_ENV
4040
4141
- name: Embedding tests
4242
run: dotnet test --logger "console;verbosity=detailed" src/embed_tests/
4343

4444
- name: Python Tests (Mono)
45-
run: python -m pytest --runtime mono
45+
run: python3.8 -m pytest --runtime mono
4646

4747
- name: Python Tests (.NET Core)
48-
run: python -m pytest --runtime coreclr
48+
run: python3.8 -m pytest --runtime coreclr
4949

5050
- name: Python tests run from .NET
5151
run: dotnet test src/python_tests_runner/

0 commit comments

Comments
 (0)
0