-
-
Notifications
You must be signed in to change notification settings - Fork 2
164 lines (150 loc) · 4.39 KB
/
ci.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
name: "CI"
on:
pull_request: # Triggered on pull requests to any branch
push:
branches: # Additionally, trigger on push events to specific branches
- master
jobs:
paths:
name: Check for Changes
runs-on: ubuntu-latest
outputs:
backend: ${{ steps.filter.outputs.backend }}
webapp: ${{ steps.filter.outputs.webapp }}
website: ${{ steps.filter.outputs.website }}
steps:
- uses: actions/checkout@v3
- name: Paths Filter
id: filter
uses: dorny/paths-filter@v2
with:
filters: |
backend:
- 'backend/**'
webapp:
- 'webapp/**'
website:
- 'website/**'
backend-build:
name: Backend Build
runs-on: ubuntu-latest
needs: paths
if: ${{ needs.paths.outputs.backend == 'true' }}
defaults:
run:
working-directory: 'backend'
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Maven
run: mvn quarkus:build package
backend-test:
name: Backend Unit Tests
runs-on: ubuntu-latest
needs: paths
if: ${{ needs.paths.outputs.backend == 'true' }}
permissions:
checks: write
contents: read
defaults:
run:
working-directory: 'backend'
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build and Run Tests
run: mvn test --batch-mode --fail-at-end
- name: Publish Test Report
if: always()
uses: scacap/action-surefire-report@v1
webapp-build:
name: Webapp Build
runs-on: ubuntu-latest
needs: paths
if: ${{ needs.paths.outputs.webapp == 'true' }}
strategy:
matrix:
node-version: [18.x]
defaults:
run:
working-directory: 'webapp'
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: webapp/package-lock.json
- run: npm ci
- run: npm run build --if-present
website-build:
name: Website Build
runs-on: ubuntu-latest
needs: paths
if: ${{ needs.paths.outputs.website == 'true' }}
strategy:
matrix:
node-version: [18.x]
defaults:
run:
working-directory: 'website'
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: website/package-lock.json
- run: npm ci
- run: npm run build --if-present
test-tauri:
name: Tauri Build Test
runs-on: ${{ matrix.platform }}
needs: [webapp-build]
if: ${{ needs.paths.outputs.webapp == 'true' }}
strategy:
fail-fast: false
matrix:
platform: [windows-latest] # Add other platforms if needed
defaults:
run:
working-directory: 'webapp'
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@1.79
- uses: Swatinem/rust-cache@v2
with:
workspaces: 'webapp/src-tauri'
- name: Install dependencies on Windows
if: matrix.platform == 'windows-latest'
run: |
choco install libgtk
# Add other Windows-specific dependencies if needed
- name: Install dependencies on Ubuntu
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install Webapp Dependencies
run: npm install # or yarn install / pnpm install based on your project
- name: Build Tauri App
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}