-
Notifications
You must be signed in to change notification settings - Fork 2
106 lines (89 loc) · 3.35 KB
/
gradle.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
99
100
101
102
103
104
105
106
name: Gradle Build
on:
push:
repository_dispatch:
types: [ lib-admin-ui, xp ]
concurrency: build-${{ github.event.client_payload.ref || github.ref }}
jobs:
publish_vars:
runs-on: ubuntu-latest
outputs:
publish: ${{ steps.publish_vars.outputs.release != 'true' && (env.ACTUAL_GITHUB_REF == 'refs/heads/master' || startsWith(env.ACTUAL_GITHUB_REF, 'refs/heads/7.')) }}
repo: ${{ steps.publish_vars.outputs.repo }}
steps:
- name: Extract actual github.ref
run: echo "ACTUAL_GITHUB_REF=${ACTUAL_REF}" >> $GITHUB_ENV
env:
ACTUAL_REF: ${{ github.event.client_payload.ref || github.ref }}
- uses: actions/checkout@v4
with:
ref: ${{ github.event.client_payload.ref || github.ref }}
- name: Get publishing variables
id: publish_vars
uses: enonic/release-tools/publish-vars@master
env:
PROPERTIES_PATH: './gradle.properties'
build:
runs-on: ubuntu-latest
needs: publish_vars
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.client_payload.ref || github.ref }}
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build with Gradle
run: ./gradlew build -Pcom.enonic.xp.app.production=true
- uses: actions/upload-artifact@v3
with:
name: app-users
path: build/libs/app-users.jar
- run: |
set -ex
- name: Run Selenium Tests
id: selenium
if: github.event.head_commit.message != 'Updated to next SNAPSHOT version'
run: ./gradlew :testing:w_testUsersApp
- name: Slack Notification
uses: rtCamp/action-slack-notify@v2
if: failure()
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_CHANNEL: notif-build-tests
SLACK_USERNAME: GitHub Actions
SLACK_TITLE: GitHub Action Failure in the Users app
SLACK_MESSAGE: ${{job.container.id}}
SLACK_ICON: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png
SLACK_COLOR: ${{ job.status }}
- uses: actions/upload-artifact@v3
if: always() && steps.selenium.conclusion != 'skipped'
with:
name: ui-test-report
path: |
testing/build/reports
- uses: codecov/codecov-action@v3
- name: Publish
if: needs.publish_vars.outputs.publish == 'true'
run: ./gradlew publish -Pcom.enonic.xp.app.production=true -PrepoKey=${{ needs.publish_vars.outputs.repo }} -PrepoUser=${{ secrets.ARTIFACTORY_USERNAME }} -PrepoPassword=${{ secrets.ARTIFACTORY_PASSWORD }}
dispatch:
needs: [publish_vars, build]
strategy:
matrix:
repo: ["enonic/xp-distro" ]
runs-on: ubuntu-latest
if: needs.publish_vars.outputs.publish == 'true'
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
repository: ${{ matrix.repo }}
event-type: app-users
client-payload: >
{"ref": "${{ github.event.client_payload.ref || github.ref }}"}