-
Notifications
You must be signed in to change notification settings - Fork 1
147 lines (131 loc) · 5.27 KB
/
build-and-test.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
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
143
144
145
146
147
name: Build & Test
on:
push:
branches: ['main']
pull_request:
branches: '*'
workflow_dispatch: # <- Setting to allow manual execution by button.
env:
CARGO_TERM_COLOR: always
BUILD_PROFILE: release-no-lto
APP_NAME: d_merge
jobs:
lint:
strategy:
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4.2.2
with:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}
- name: Rust cache
uses: Swatinem/rust-cache@v2.7.5
with:
prefix-key: cargo-debug-${{ matrix.platform }}
# NOTE: It is not necessary, but for some reason it makes an error if there is no gui dependency package.
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev
- name: Check format
run: cargo fmt --all -- --check
- name: Lint Check
run: cargo clippy --workspace -- -D warnings
test:
strategy:
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4.2.2
with:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}
- name: Rust cache
uses: Swatinem/rust-cache@v2.7.5
with:
prefix-key: cargo-debug-${{ matrix.platform }}
# https://nexte.st/docs/installation/pre-built-binaries/#using-nextest-in-github-actions
- name: Install nextest(Parallel Test Execution CLI)
uses: taiki-e/install-action@nextest
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev
- name: Test(Rust)
run: cargo nextest run --workspace
build:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4.2.2
with:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}
- name: Rust cache
uses: Swatinem/rust-cache@v2.7.5
with:
prefix-key: cargo-${{ env.BUILD_PROFILE }}-${{ matrix.platform }}
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
# You can remove libayatana-appindicator3-dev if you don't use the system tray feature.
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev
- name: Sync node version
uses: actions/setup-node@v4.1.0
with:
node-version: 'lts/*'
cache: 'npm'
- name: Node.js cache
uses: actions/cache@v4.1.2
with:
path: ${{ github.workspace }}/gui/frontend/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('gui/frontend/src/**/*.[jt]s', 'gui/frontend/src/**/*.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
- name: Install frontend dependencies
run: npm ci --force
- name: Test(Node.js)
run: npm test
- name: Build Test(GUI)
run: npm run build
# ----------------------------------------------------------------------------------------------------------------
- name: Compress outputs(Windows)
shell: pwsh
if: runner.os == 'Windows'
run: |
mkdir -p ./build
Move-Item -Path ./target/${{ env.BUILD_PROFILE }}/${{ env.APP_NAME }}.exe -Destination './build'
Move-Item -Force -Path ./resource/assets -Destination ./build
# ----------------------------------------------------------------------------------------------------------------
- name: Compress outputs(MacOS)
shell: bash
if: runner.os == 'macOS'
run: |
mkdir -p ./build/assets
mv ./target/${{ env.BUILD_PROFILE }}/${{ env.APP_NAME }} ./build
mv ./resource/assets ./build
# ----------------------------------------------------------------------------------------------------------------
- name: Compress outputs(Linux)
shell: bash
if: runner.os == 'Linux'
run: |
mkdir -p ./build/assets
mv ./target/${{ env.BUILD_PROFILE }}/${{ env.APP_NAME }} ./build
mv ./resource/assets ./build
# ----------------------------------------------------------------------------------------------------------------
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.4.3
with:
name: ${{ env.APP_NAME }}-${{runner.os}}
path: |
./build/