-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (38 loc) · 1.17 KB
/
main.windows.temurin.current.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
#
# Automatically generated: DO NOT EDIT.
#
# Generation code: https://www.github.com/io7m-com/.github/
# Workflow profile: Core
#
name: main.windows.temurin.current
on:
push:
branches: [ master, main, develop, feature/*, release/* ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: JDK
uses: actions/setup-java@v4
with:
java-version: 22
distribution: 'temurin'
- name: Collect project version
id: project_version
run: java .github/workflows/Tools.java ShowProjectVersion pom.xml >> "$GITHUB_OUTPUT"
- name: Collect project snapshot
id: project_is_snapshot
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
- name: Build
env:
XOANON_REALLY_USE_LOCAL_DISPLAY: true
run: mvn --batch-mode --strict-checksums --errors clean verify site
- name: Upload test logs
uses: actions/upload-artifact@v4
if: always()
with:
name: test-logs
path: ./com.io7m.jobj.tests/target/surefire-reports