-
Notifications
You must be signed in to change notification settings - Fork 10
70 lines (57 loc) · 1.53 KB
/
Copy pathbuild.yml
File metadata and controls
70 lines (57 loc) · 1.53 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: build
on: [push]
jobs:
build_cpy_ghuser_components:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: NuGet/setup-nuget@v1.0.5
- name: Install CPython and pythonnet package
run: |
choco install python --version=3.9.10
python -m pip install pythonnet==3.0.3
- name: Run
uses: ./
with:
source: examples/cpy
target: build
interpreter: cpython
- uses: actions/upload-artifact@v4
with:
name: cpy_ghuser-components
path: build
build_ipy_ghuser_components:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: NuGet/setup-nuget@v1.0.5
- name: Install IronPython
run: |
choco install ironpython --version=2.7.8.1
- name: Run
uses: ./
with:
source: examples/ipy
target: build
- uses: actions/upload-artifact@v4
with:
name: ipy_ghuser-components
path: build
build_ipy_v2_ghuser_components:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: NuGet/setup-nuget@v1.0.5
- name: Install IronPython
run: |
choco install ironpython --version=2.7.8.1
- name: Run
uses: ./
with:
source: examples/ipy_v2
target: build
interpreter: ipy_v2
- uses: actions/upload-artifact@v4
with:
name: ipy_v2_ghuser-components
path: build