-
-
Notifications
You must be signed in to change notification settings - Fork 4
112 lines (98 loc) · 3.22 KB
/
ci_test.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
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
name: Test Build LaLa
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
jobs:
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: kuhnroyal/flutter-fvm-config-action@v2
id: fvm-config-action
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }}
channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }}
- run: flutter --version
- run: flutter config --enable-windows-desktop
- run: flutter build windows
- name: Build Installer
run: |
"%programfiles(x86)%\Inno Setup 6\iscc.exe" ".\dist\windows_inno_setup.iss"
shell: cmd
- uses: actions/upload-artifact@v4
with:
name: LaLa_Setup
path: build\LaLa_Setup.exe
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: kuhnroyal/flutter-fvm-config-action@v2
id: fvm-config-action
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }}
channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }}
- run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
- run: flutter config --enable-linux-desktop
- run: flutter build linux --target-platform=linux-x64
- run: (cd build/linux/x64/release/bundle && zip -r ../../../../LaLa_linux_amd64.zip .)
- name: upload LaLa Build
uses: actions/upload-artifact@v4
with:
name: LaLa_build
path: build
- uses: actions/upload-artifact@v4
with:
name: LaLa_amd64_binary
path: build/LaLa_linux_amd64.zip
- name: Package Deb App
run: bash dist/linux_deb.sh
- uses: actions/upload-artifact@v4
with:
name: LaLa_amd64_deb
path: build/LaLa_amd64.deb
- name: Build AppImage using AppImage-Builder
uses: docker://appimagecrafters/appimage-builder:latest
with:
entrypoint: appimage-builder
args: --recipe dist/AppImageBuilder.yml --skip-test
- uses: actions/upload-artifact@v4
with:
name: LaLa_amd64_appImage
path: '*.AppImage'
build_flatpak:
needs: build_linux
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:freedesktop-23.08
options: --privileged
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: LaLa_build
path: build
- name: Build Flatpak
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: LaLa_linux_amd64.flatpak
manifest-path: dist/com.aironheart.lala.yml
cache-key: flatpak-builder-${{ github.sha }}
upload-artifact: false
- uses: actions/upload-artifact@v4
with:
name: LaLa_amd64_flatpak
path: LaLa_linux_amd64.flatpak