Skip to content

Commit fe21e55

Browse files
committed
Generate Runtimes From Requirement Automatically Using Workflows
1 parent 805cb0c commit fe21e55

File tree

1,240 files changed

+76
-231500
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,240 files changed

+76
-231500
lines changed

.github/workflows/release.yml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,72 @@ on:
77
workflow_dispatch:
88

99
jobs:
10+
build-mac:
11+
runs-on: macos-latest
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v3
16+
17+
- name: Setup Python
18+
uses: actions/setup-python@v4
19+
with:
20+
python-version: '3.13'
21+
22+
- name: Create Virtual Environment
23+
run: |
24+
python -m venv py313-mac
25+
rm py313-mac/.gitignore
26+
27+
- name: Install Dependencies
28+
run: |
29+
source py313-mac/bin/activate
30+
pip install -r requirements.txt
31+
32+
build-windows:
33+
runs-on: windows-latest
34+
35+
steps:
36+
- name: Checkout
37+
uses: actions/checkout@v3
38+
39+
- name: Setup Python
40+
uses: actions/setup-python@v4
41+
with:
42+
python-version: '3.13'
43+
44+
- name: Create Virtual Environment
45+
run: |
46+
python -m venv py313-win
47+
del py313-win\.gitignore
48+
49+
- name: Install Dependencies
50+
run: |
51+
.\py313-win\Scripts\activate
52+
pip install -r requirements.txt
53+
54+
build-linux:
55+
runs-on: ubuntu-latest
56+
57+
steps:
58+
- name: Checkout
59+
uses: actions/checkout@v3
60+
61+
- name: Setup Python
62+
uses: actions/setup-python@v4
63+
with:
64+
python-version: '3.13'
65+
66+
- name: Create Virtual Environment
67+
run: |
68+
python -m venv py313-linux
69+
rm py313-linux/.gitignore
70+
71+
- name: Install Dependencies
72+
run: |
73+
source py313-linux/bin/activate
74+
pip install -r requirements.txt
75+
1076
release:
1177
runs-on: ubuntu-latest
1278

py313-mac/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

py313-mac/bin/Activate.ps1

Lines changed: 0 additions & 248 deletions
This file was deleted.
-246 KB
Binary file not shown.

0 commit comments

Comments
 (0)