-
-
Notifications
You must be signed in to change notification settings - Fork 7
88 lines (81 loc) · 2.48 KB
/
main.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
name: CI
on:
push:
branches:
- main
- 'releases/*'
pull_request:
branches:
- '*'
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 1
- name: Build
uses: ./.github/actions/run-gradle
- name: Archive Open Test Reports
uses: ./.github/actions/archive-reports
if: ${{ always() }}
Windows:
runs-on: windows-latest
steps:
- name: Check out repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 1
- name: Build
uses: ./.github/actions/run-gradle
- name: Archive Open Test Reports
uses: ./.github/actions/archive-reports
if: ${{ always() }}
macOS:
runs-on: macos-latest
steps:
- name: Check out repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 1
- name: Build
uses: ./.github/actions/run-gradle
- name: Archive Open Test Reports
uses: ./.github/actions/archive-reports
if: ${{ always() }}
publish_artifacts:
name: Publish Snapshot Artifacts
needs: Linux
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.repository == 'ota4j-team/open-test-reporting' && (startsWith(github.ref, 'refs/heads/releases/') || github.ref == 'refs/heads/main')
steps:
- name: Check out repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 1
- name: Publish
uses: ./.github/actions/run-gradle
env:
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }}
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }}
with:
arguments: publish -x check
update_documentation:
name: Deploy Schemas
needs: Linux
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.repository == 'ota4j-team/open-test-reporting' && github.ref == 'refs/heads/main'
steps:
- name: Check out repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 1
- name: Publish
uses: ./.github/actions/run-gradle
env:
GRGIT_USER: ${{ secrets.GH_TOKEN }}
with:
arguments: gitPublishPush