-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (54 loc) · 1.52 KB
/
build-and-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
name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
cache: 'gradle'
# -------------------
# Build & Test Client
# -------------------
- name: Grant execute permission to Gradlew (Client)
run: chmod +x ./client/gradlew
- name: Build Client with Gradle
working-directory: ./client
run: ./gradlew shadowJar
- name: Run Client Tests
working-directory: ./client
run: ./gradlew test
- name: Upload Client Build Artifact
uses: actions/upload-artifact@v3
with:
name: client-shadow-jar
path: client/app/build/libs/*.jar
# -------------------
# Build & Test Server
# -------------------
- name: Grant execute permission to Gradlew (Server)
run: chmod +x ./server/gradlew
- name: Build Server with Gradle
working-directory: ./server
run: ./gradlew shadowJar
- name: Run Server Tests
working-directory: ./server
run: ./gradlew test
- name: Upload Server Build Artifact
uses: actions/upload-artifact@v3
with:
name: server-shadow-jar
path: server/app/build/libs/*.jar