-
Notifications
You must be signed in to change notification settings - Fork 0
98 lines (83 loc) · 2.77 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
name: CI Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
UI-Tests:
name: UI Tests - Java ${{ matrix.java-version }}
runs-on: macos-latest
strategy:
matrix:
java-version: [21]
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'zulu'
- name: Print Working Directory and Home Folder
run: |
echo "Working Directory: $(pwd)"
echo "Home Directory: $HOME"
- name: Maven Dependency Cache
uses: actions/cache@v3
id: maven-cache
with:
path: |
~/.m2/repository
!~/.m2/repository/Ellithium
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-${{ matrix.java-version }}
restore-keys: |
${{ runner.os }}-maven-${{ matrix.java-version }}
${{ runner.os }}-maven-
- name: Download Dependencies
if: steps.maven-cache.outputs.cache-hit != 'true'
run: mvn dependency:go-offline
continue-on-error: true
- name: Clean up previous test output
run: |
rm -rf Test-Output/Reports/*
rm -rf Test-Output/Logs/*
rm -rf Test-Output/ScreenShots/Failed/*
find Test-Output/UpdateChecker/ -type f ! -name 'checker.json' -delete
- name: Run Tests
id: run-tests
run: |
mvn clean test
- name: Listing Folders
run: |
echo "Project root directory structure:"
find . -type d -maxdepth 1 -print
- name: Upload Test Reports
if: always() && steps.run-tests.conclusion != 'skipped'
uses: actions/upload-artifact@v4
with:
name: Test-Reports-Java${{ matrix.java-version }}
path: ./Test-Output/Reports/
retention-days: 30
- name: Upload Test Logs
if: always() && steps.run-tests.conclusion != 'skipped'
uses: actions/upload-artifact@v4
with:
name: Test-Logs
path: ./Test-Output/Logs/
retention-days: 30
- name: Upload Failed Screenshots
if: always() && steps.run-tests.conclusion != 'skipped'
uses: actions/upload-artifact@v4
with:
name: Failed-Screenshots
path: ./Test-Output/ScreenShots/Failed/
retention-days: 30
- name: Upload Update Checker
if: always() && steps.run-tests.conclusion != 'skipped'
uses: actions/upload-artifact@v4
with:
name: Update-Checker
path: ./Test-Output/UpdateChecker/
retention-days: 30