FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/.github/workflows/ARM.yml at DisableImplicit-SeqToArray · losttech/pythonnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
losttech
/
pythonnet
Public
forked from
pythonnet/pythonnet
Notifications
You must be signed in to change notification settings
Fork
1
Star
2
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
.github
/
workflows
/
ARM.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
56 lines (43 loc) · 1.41 KB
Breadcrumbs
pythonnet
/
.github
/
workflows
/
ARM.yml
Copy path
File metadata and controls
56 lines (43 loc) · 1.41 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name
:
Main (ARM)
on
:
push
:
branches
:
-
master
pull_request
:
jobs
:
build-test-arm
:
name
:
Build and Test ARM64
runs-on
:
[self-hosted, linux, ARM64]
timeout-minutes
:
15
steps
:
-
name
:
Checkout code
uses
:
actions/checkout@v2
-
name
:
Setup .NET
uses
:
actions/setup-dotnet@v1
with
:
dotnet-version
:
'
6.0.x
'
-
name
:
Clean previous install
run
:
|
pip uninstall -y pythonnet
-
name
:
Install dependencies
run
:
|
pip install --upgrade -r requirements.txt
pip install pytest numpy # for tests
-
name
:
Build and Install
run
:
|
pip install -v .
-
name
:
Set Python DLL path (non Windows)
run
:
|
echo PYTHONNET_PYDLL=$(python -m find_libpython) >> $GITHUB_ENV
-
name
:
Embedding tests
run
:
dotnet test --logger "console;verbosity=detailed" src/embed_tests/
-
name
:
Python Tests (Mono)
run
:
python -m pytest --runtime mono
-
name
:
Python Tests (.NET Core)
run
:
python -m pytest --runtime coreclr
-
name
:
Python tests run from .NET
run
:
dotnet test src/python_tests_runner/
#
- name: Perf tests
#
run: |
#
pip install --force --no-deps --target src/perf_tests/baseline/ pythonnet==2.5.2
#
dotnet test --configuration Release --logger "console;verbosity=detailed" src/perf_tests/
Back
|
FazBrowse Home
|
New Git URL