-
Notifications
You must be signed in to change notification settings - Fork 62
142 lines (117 loc) · 4.79 KB
/
test-linux-build.yml
File metadata and controls
142 lines (117 loc) · 4.79 KB
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
name: Test Linux Build
on:
push:
tags:
- 'v*.*.*-test*'
permissions:
contents: write
env:
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: short
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
build-linux:
name: Build Linux test package (x86_64)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-gnu
- name: Rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: 'v1'
key: 'ubuntu-22.04-x86_64-unknown-linux-gnu-test'
workspaces: src-tauri -> target
- name: Install Linux dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
libwebkit2gtk-4.1-dev \
libayatana-appindicator3-dev \
librsvg2-dev \
patchelf
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: '20'
- uses: pnpm/action-setup@v4
with:
run_install: false
- name: Get linked dependency versions
id: dep-versions
shell: bash
run: |
SM_SHA=$(git -C libs/stream-monaco rev-parse HEAD)
MS_SHA=$(git -C libs/markstream-vue rev-parse HEAD)
echo "cache-key=${{ runner.os }}-x86_64-unknown-linux-gnu-test-linked-deps-${SM_SHA:0:12}-${MS_SHA:0:12}" >> "$GITHUB_OUTPUT"
- name: Cache linked dependencies
id: cache-linked-deps
uses: actions/cache@v4
with:
path: |
libs/stream-monaco/node_modules
libs/stream-monaco/dist
libs/markstream-vue/node_modules
libs/markstream-vue/packages/markdown-parser/node_modules
libs/markstream-vue/packages/markdown-parser/dist
libs/markstream-vue/packages/markstream-react/node_modules
libs/markstream-vue/packages/markstream-react/dist
key: ${{ steps.dep-versions.outputs.cache-key }}
- name: Build linked dependencies
if: steps.cache-linked-deps.outputs.cache-hit != 'true'
run: |
pnpm --dir libs/stream-monaco install --frozen-lockfile
pnpm --dir libs/stream-monaco build
pnpm --dir libs/markstream-vue install --frozen-lockfile
pnpm --dir libs/markstream-vue run build:parser
pnpm --dir libs/markstream-vue/packages/markstream-react build
- name: Install frontend dependencies
run: pnpm install --frozen-lockfile
- name: Build Linux bundles
run: pnpm tauri build --target x86_64-unknown-linux-gnu --bundles appimage,rpm,deb
env:
NODE_OPTIONS: '--max_old_space_size=4096'
AQBOT_TEST_BUILD: '1'
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
- name: Publish Linux test release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
name: 'AQBot ${{ github.ref_name }}'
body: |
Linux test build for issue #83 diagnostics.
If AQBot still opens as a blank window, start it with:
```bash
AQBOT_LOG_FILE="$HOME/aqbot-${{ github.ref_name }}.log" RUST_LOG=debug AQBOT_ENABLE_DEVTOOLS=1 ./AQBot_0.0.76_amd64.AppImage
```
For the RPM install:
```bash
AQBOT_LOG_FILE="$HOME/aqbot-${{ github.ref_name }}-rpm.log" RUST_LOG=debug AQBOT_ENABLE_DEVTOOLS=1 AQBot
```
If the log still stops around `builder.build(context)`, run the minimal-plugin diagnostic path:
```bash
AQBOT_LOG_FILE="$HOME/aqbot-${{ github.ref_name }}-minimal.log" RUST_LOG=debug AQBOT_ENABLE_DEVTOOLS=1 AQBOT_LINUX_MINIMAL_PLUGINS=1 ./AQBot_0.0.76_amd64.AppImage
```
Please attach the generated log file back to issue #83.
draft: false
prerelease: true
make_latest: false
token: ${{ secrets.GITHUB_TOKEN }}
files: |
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/appimage/*.AppImage
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/appimage/*.AppImage.sig
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/rpm/*.rpm
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/rpm/*.rpm.sig
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/deb/*.deb
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/deb/*.deb.sig