-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (60 loc) · 2.34 KB
/
build-cli-linux-appimage.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
name: build-cli-linux-appimage
on:
workflow_dispatch:
env:
REF_TAG: v1.6.0
jobs:
build:
runs-on: ubuntu-22.04
env:
BUILD_TYPE: Release
steps:
- uses: actions/checkout@v4
with:
repository: ctlcltd/e2-sat-editor
# ref: ${{ env.REF_TAG }}
path: e2-sat-editor
- name: Setup Aptitude
run: |
sudo apt-get install cmake ninja-build
- name: Download deploy tools
run: |
sudo apt-get install fuse wget
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage
chmod +x linuxdeploy-x86_64.AppImage
chmod +x appimagetool-x86_64.AppImage
mv linuxdeploy-x86_64.AppImage /usr/local/bin/linuxdeploy
mv appimagetool-x86_64.AppImage /usr/local/bin/appimagetool
- name: Configure CMake
working-directory: ${{github.workspace}}/e2-sat-editor/src/cli
run: |
cmake \
-G Ninja \
-B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
-DRELEASE_MEDIUM=github
- name: Build
working-directory: ${{github.workspace}}/e2-sat-editor/src/cli
run: cmake --build build --config ${{ env.BUILD_TYPE }}
- name: Deploy artifact
working-directory: ${{github.workspace}}/e2-sat-editor/src/cli
continue-on-error: true
run: |
DESTDIR=../AppDir ninja -C build install
# pre actions
mkdir -p AppDir/usr/share/{applications,metainfo}
cp ../../dist/xdg/e2se-cli.desktop AppDir/usr/share/applications/io.github.ctlcltd.e2se-cli.desktop
cp ../../dist/xdg/io.github.ctlcltd.e2se-cli.metainfo.xml AppDir/usr/share/metainfo/io.github.ctlcltd.e2se-cli.appdata.xml
mkdir -p AppDir/usr/share/doc/e2se-cli
mv AppDir/usr/share/e2se-cli/Readme.txt AppDir/usr/share/doc/e2se-cli/readme
mv AppDir/usr/share/e2se-cli/License.txt AppDir/usr/share/doc/e2se-cli/copyright
# run linuxdeploy
linuxdeploy --appdir AppDir --output appimage
# package
mv e2se-cli-x86_64.AppImage ../../artifact
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: ${{github.workspace}}/e2-sat-editor/artifact