-
-
Notifications
You must be signed in to change notification settings - Fork 1
170 lines (149 loc) · 6.07 KB
/
build.yaml
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
name: Build
on:
workflow_dispatch:
jobs:
create_release:
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
date: ${{ steps.date.outputs.date }}
steps:
- name: Get the date
id: date
run: echo "::set-output name=date::$(date +'%Y%m%d%H%M%S')"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.TAS }}
with:
tag_name: TAS_${{ steps.date.outputs.date }}
release_name: TAS_${{ steps.date.outputs.date }}
draft: true
build_full:
needs: create_release
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
include:
- os: windows-latest
python-version: "3.12.4"
build-script: build.py
asset-content-type: application/x-7z-compressed
asset-extension: .7z
asset-suffix: "_Full_Windows"
- os: ubuntu-latest
python-version: "3.12.4"
build-script: build-linux.py
asset-content-type: application/x-7z-compressed
asset-extension: .7z
asset-suffix: "_Full_Linux"
fail-fast: true
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Free Disk Space (Ubuntu)
if: matrix.os == 'ubuntu-latest'
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Install CUDA Toolkit (Ubuntu)
if: matrix.os == 'ubuntu-latest'
uses: Jimver/[email protected]
id: cuda-toolkit
with:
cuda: "12.4.0"
- name: Print working directory and disk space (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
echo "Current working directory:"
pwd
echo "Available disk space:"
df -h
- name: Print working directory and disk space (Windows)
if: matrix.os == 'windows-latest'
run: |
echo "Current working directory:"
pwd
echo "Available disk space on all drives:"
Get-PSDrive -PSProvider FileSystem | Select-Object -Property Name, @{Name="Used(GB)";Expression={[math]::round($_.Used/1GB,2)}}, @{Name="Free(GB)";Expression={[math]::round($_.Free/1GB,2)}}, @{Name="Total(GB)";Expression={[math]::round($_.Used/1GB,2) + [math]::round($_.Free/1GB,2)}}
- name: Run full build script
run: python ${{ matrix.build-script }} --output dist-full
- name: Compress full directory (Windows)
if: matrix.os == 'windows-latest'
run: |
cd ${{ github.workspace }}/dist-full/main/
7z a -t7z -m0=lzma2 -mx=9 -ms=1536m -md=273m ../../TAS_${{ needs.create_release.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }} *
- name: Compress full directory (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
cd ${{ github.workspace }}/dist/main/
7z a -t7z -m0=lzma2 -mx=9 -ms=1536m -md=273m ../../TAS_${{ needs.create_release.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }} *
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.TAS }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_path: TAS_${{ needs.create_release.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }}
asset_name: TAS_${{ needs.create_release.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }}
asset_content_type: ${{ matrix.asset-content-type }}
build_lite:
needs: create_release
strategy:
matrix:
os: [windows-latest]
include:
- os: windows-latest
python-version: "3.12.4"
build-script: build-lite.py
asset-content-type: application/x-7z-compressed
asset-extension: .7z
asset-suffix: "_Lite_Windows"
fail-fast: true
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Print working directory and disk space (Windows)
run: |
echo "Current working directory:"
pwd
echo "Available disk space on all drives:"
Get-PSDrive -PSProvider FileSystem | Select-Object -Property Name, @{Name="Used(GB)";Expression={[math]::round($_.Used/1GB,2)}}, @{Name="Free(GB)";Expression={[math]::round($_.Free/1GB,2)}}, @{Name="Total(GB)";Expression={[math]::round($_.Used/1GB,2) + [math]::round($_.Free/1GB,2)}}
- name: Run lite build script
run: python ${{ matrix.build-script }} --output dist-lite
- name: Compress lite directory
run: |
cd ${{ github.workspace }}/dist-lite/main/
7z a -t7z -m0=lzma2 -mx=9 -ms=1536m -md=273m ../../TAS_${{ needs.create_release.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }} *
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.TAS }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_path: TAS_${{ needs.create_release.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }}
asset_name: TAS_${{ needs.create_release.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }}
asset_content_type: ${{ matrix.asset-content-type }}