-
Notifications
You must be signed in to change notification settings - Fork 2
83 lines (69 loc) · 2.03 KB
/
build.yml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Build
on: [push, pull_request]
jobs:
windows_x64:
name: Windows x64
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: 'x64'
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements.txt') }}
- name: Install Dependencies
run: |
python -m venv venv
.\venv\Scripts\activate
pip install -r requirements.txt
- name: Build
run: |
.\venv\Scripts\activate
python setup.py build
git fetch --tags --unshallow
git describe --tags > dist\version.txt
copy assets\github.url "dist\View on GitHub.url"
- name: Upload
uses: actions/upload-artifact@v4
with:
name: "build-windows-x64"
path: "dist"
linux_x64:
name: Linux x64
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: 'x64'
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements.txt') }}
- name: Install Dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- name: Build
run: |
source venv/bin/activate
python setup.py build
git fetch --tags --unshallow
git describe --tags > dist/version.txt
echo "https://github.com/lah7/sims2-4k-ui-patch" > "dist/View on GitHub.txt"
- name: Upload
uses: actions/upload-artifact@v4
with:
name: "build-linux-x64"
path: "dist"