-
-
Notifications
You must be signed in to change notification settings - Fork 7
83 lines (71 loc) · 2.22 KB
/
compiler.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: Compiler
on:
push: null
jobs:
windows:
name: Windows Build
runs-on: windows-2019
steps:
- name: Clone Repo
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Compile auto-mcs
shell: pwsh
run: |
systeminfo
$python_path = "$env:LOCALAPPDATA\Programs\Python\Python39"
md $python_path
Move-Item -Force C:\hostedtoolcache\windows\Python\3.9.13\x64\* $python_path
powershell -noprofile -executionpolicy bypass -file .\build-tools\build-windows.ps1
- name: Upload Executable
uses: actions/upload-artifact@v3
with:
name: auto-mcs-windows
path: build-tools/dist/
retention-days: 5
linux:
name: Linux Build
runs-on: ubuntu-20.04
steps:
- name: Clone Repo
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Dependencies
run: |
sudo apt update -y
sudo apt install xvfb fluxbox libasound2 -y
export DISPLAY=:0.0
Xvfb :0 -screen 0 1280x720x24 > /dev/null 2>&1 &
sleep 1
fluxbox > /dev/null 2>&1 &
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
#- name: Setup upterm session
# uses: lhotari/action-upterm@v1
- name: Compile auto-mcs
run: |
mkdir -p /opt/python/
ln -s /opt/hostedtoolcache/Python/3.9.18/x64 /opt/python/3.9.18
sudo rm -rf /usr/bin/python3
sudo ln -s /opt/hostedtoolcache/Python/3.9.18/x64/bin/python/bin/python3
sudo cp -f /usr/lib/x86_64-linux-gnu/libcrypt.so.1 /usr/lib64/libcrypt.so.2
sudo cp -f /usr/bin/whoami /usr/bin/logname
export DISPLAY=:0.0
cd build-tools
chmod +x build-linux.sh
sudo ./build-linux.sh
- name: Upload Binary
uses: actions/upload-artifact@v3
with:
name: auto-mcs-linux
path: build-tools/dist/
retention-days: 5