-
Notifications
You must be signed in to change notification settings - Fork 0
203 lines (166 loc) · 7.27 KB
/
main.yml
File metadata and controls
203 lines (166 loc) · 7.27 KB
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
name: lf-repository-api-client-java-CI
on:
push:
branches:
- v2
pull_request:
branches:
- v2
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
API_VERSION: 'v2'
VERSION_PREFIX: '1.0.3'
GITHUB_PAGES_BRANCH: 'gh-pages'
jobs:
build-n-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- name: Build project
run: mvn -B package -Dmaven.test.skip=true --file pom.xml
- name: Run unit tests
run: mvn -Dtest=com.laserfiche.repository.api.unit.** test
- name: Publish unit test results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: target/surefire-reports/*.xml
check_name: unit-test-results
- name: Delete test reports
run: rm -rf target/surefire-reports/*.xml
- name: Run integration tests on cloud
id: integration-test-cloud
env:
ACCESS_KEY: ${{ secrets.DEV_CA_PUBLIC_USE_INTEGRATION_TEST_ACCESS_KEY }}
SERVICE_PRINCIPAL_KEY: ${{ secrets.DEV_CA_PUBLIC_USE_TESTOAUTHSERVICEPRINCIPAL_SERVICE_PRINCIPAL_KEY }}
REPOSITORY_ID: ${{ secrets.DEV_CA_PUBLIC_USE_REPOSITORY_ID_2 }}
AUTHORIZATION_TYPE: ${{ secrets.AUTHORIZATION_TYPE }}
TEST_HEADER: ${{ secrets.TEST_HEADER }}
READONLY_TEST_FOLDER_ID: ${{ secrets.DEV_CA_READONLY_TEST_FOLDER_ID }}
run: mvn -Dtest=com.laserfiche.repository.api.integration.** test
- name: Publish cloud test results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: target/surefire-reports/*.xml
check_name: integration-test-results-cloud
- name: Delete test reports
run: rm -rf target/surefire-reports/*.xml
# - name: Run integration tests on self-hosted
# id: integration-test-self-hosted
# if: always() && (steps.integration-test-cloud.outcome == 'success' || steps.integration-test-cloud.outcome == 'failure')
# env:
# REPOSITORY_ID: ${{ secrets.APISERVER_REPOSITORY_ID }}
# APISERVER_USERNAME: ${{ secrets.APISERVER_USERNAME }}
# APISERVER_PASSWORD: ${{ secrets.APISERVER_PASSWORD }}
# APISERVER_REPOSITORY_API_BASE_URL: ${{ secrets.APISERVER_REPOSITORY_API_BASE_URL }}
# AUTHORIZATION_TYPE: ${{ secrets.APISERVER_AUTHORIZATION_TYPE }}
# run: mvn -Dtest=com.laserfiche.repository.api.integration.** test
# - name: Publish self-hosted test results
# uses: EnricoMi/publish-unit-test-result-action@v1
# if: always()
# with:
# files: target/surefire-reports/*.xml
# check_name: integration-test-results-self-hosted
build-documentation:
runs-on: ubuntu-latest
needs: [build-n-test]
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- name: Create temporary directory
run: mkdir -p ./docs_temp/${{ github.ref_name }}
- name: Generate Javadoc
run: mvn javadoc:javadoc
- name: Move javadoc files to temporary directory
run: mv ${{ github.workspace }}/target/site/ ${{ github.workspace }}/docs_temp/${{ github.ref_name }}
- name: Upload a build artifact
uses: actions/upload-artifact@v4
with:
name: documentation-artifact
# A file, directory or wildcard pattern that describes what to upload
path: ${{ github.workspace }}/docs_temp/${{ github.ref_name }}/site/apidocs
- name: Delete temporary directory
run: rm -r ./docs_temp
publish-production-package:
runs-on: ubuntu-latest
environment: production
if: ${{ github.run_attempt != 1 }}
needs: [build-n-test, build-documentation] # wait for build to finish
steps:
- uses: actions/checkout@v4
- name: Import GPG Key
run: |
echo "${{ secrets.MAVEN_GPG_SECRET_KEY }}" | gpg --batch --import
- name: Set up Java Maven
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
server-id: central
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: Generate package version
run: echo "PACKAGE_VERSION=${{ env.VERSION_PREFIX }}" >> $GITHUB_ENV
- name: Set package version
run: mvn versions:set -DnewVersion=${{ env.PACKAGE_VERSION }}
- name: Publish to Sonatype
run: mvn clean deploy -Pdeploy-to-maven -Dmaven.test.skip=true -Dgpg.passphrase=${{ secrets.MAVEN_GPG_SECRET_KEY_PASSPHRASE }}
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERTOKEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_USERTOKEN_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_SECRET_KEY_PASSPHRASE }}
- name: Tag commit
uses: rickstaa/action-create-tag@v1
with:
tag: ${{ env.API_VERSION }}-${{ env.PACKAGE_VERSION }}
commit_sha: ${{ github.sha }}
message: Workflow run ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
publish-documentation:
runs-on: ubuntu-latest
timeout-minutes: 10
environment: github-pages
needs: [publish-production-package]
steps:
- name: Set DOCUMENTATION_VERSION environment variable
run: |
version_prefix=${{ env.VERSION_PREFIX }}
major_version=${version_prefix%%.*}
documentation_version=$major_version.x
echo $documentation_version
echo DOCUMENTATION_VERSION=$documentation_version >> $GITHUB_ENV
- name: Print DOCUMENTATION_VERSION environment variable
run: |
echo 'Publishing documentation to ${{ env.GITHUB_PAGES_BRANCH }} for ${{ env.API_VERSION }} ${{ env.DOCUMENTATION_VERSION }}.'
- uses: actions/checkout@v4
with:
ref: ${{ env.GITHUB_PAGES_BRANCH }}
- name: Delete documentation directory
run: rm -f -r ./docs/${{ env.API_VERSION }}/${{ env.DOCUMENTATION_VERSION }}
- name: Create documentation directory
run: mkdir -p ./docs/${{ env.API_VERSION }}/${{ env.DOCUMENTATION_VERSION }}
- name: Download documentation build artifact
uses: actions/download-artifact@v4
with:
name: documentation-artifact
path: ./docs/${{ env.API_VERSION }}/${{ env.DOCUMENTATION_VERSION }}
- name: Create a pull request
uses: peter-evans/create-pull-request@v4
with:
branch: ${{ env.GITHUB_PAGES_BRANCH }}-${{ env.API_VERSION }}-${{ env.DOCUMENTATION_VERSION }}-patch
delete-branch: true
title: 'Automated documentation update for ${{ env.API_VERSION }} ${{ env.DOCUMENTATION_VERSION }} by action ${{ github.run_id }}'
commit-message: 'Automated documentation update for ${{ env.API_VERSION }} ${{ env.DOCUMENTATION_VERSION }} by action ${{ github.run_id }}'
body: 'Automated documentation update for ${{ env.API_VERSION }} ${{ env.DOCUMENTATION_VERSION }} by action ${{ github.run_id }}'
assignees: ${{ github.actor }}