-
Notifications
You must be signed in to change notification settings - Fork 1
84 lines (73 loc) · 2.26 KB
/
linux_release.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
84
name: Linux Release
on:
push:
branches:
- "master"
- "continuous-integration"
- "cross-platform"
tags:
- "v*"
pull_request:
branches:
- "master"
- "continuous-integration"
defaults:
run:
shell: bash
env:
SOURCE_DIR: ${{ github.workspace }}
QT_VERSION: 6.5.3
ARTIFACT: "CS3MapEdit-x86_64.AppImage"
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: ${{ env.QT_VERSION }}
host: linux
target: desktop
arch: gcc_64
dir: ${{ runner.temp }}
#modules: #qtcharts qt3d
setup-python: false
- name: Create build directory
run: mkdir ${{ env.SOURCE_DIR }}/build
- name: Build
working-directory: ${{ env.SOURCE_DIR }}/build
run: |
qmake -r ${{ env.SOURCE_DIR }}/src/mapedit.pro
make
- name: AppImage
working-directory: ${{ env.SOURCE_DIR }}/build
run: |
sudo apt update -y
sudo apt install libxcb-cursor0
sudo apt install libfuse2
wget -O deploy.AppImage https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
chmod +x deploy.AppImage
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${{ github.workspace }}/Qt/5.15.2/gcc_64/lib/
ls ${{ env.SOURCE_DIR }}
cp ${{ env.SOURCE_DIR }}/linux/* .
./deploy.AppImage CS3MapEdit.desktop -appimage -no-translations -qmldir=${{ env.SOURCE_DIR }} -extra-plugins=renderers
ls -l
mkdir ${{ env.SOURCE_DIR }}/build/release
ls -l
mv CS3MapEdit*.AppImage ${{ env.SOURCE_DIR }}/build/release
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
${{ env.SOURCE_DIR }}/build/release/*.AppImage
LICENSE
- name: Linux artefact
uses: actions/upload-artifact@v1
with:
name: ${{ env.ARTIFACT }}
path: ${{ env.SOURCE_DIR }}/build/release