forked from pinpoint-apm/pinpoint
-
Notifications
You must be signed in to change notification settings - Fork 1
94 lines (93 loc) · 3.73 KB
/
it-command.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
name: it-command
on:
repository_dispatch:
types: [it-command]
jobs:
pullrequest_IT:
runs-on: ubuntu-20.04
env:
PR_NUMBER: ${{ github.event.client_payload.github.payload.issue.number }}
PR_P: ${{ github.event.issue.number }}
steps:
- name: Create URL to the run output
id: vars
run: echo ::set-output name=run-url::https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID
- name: Update success comment
uses: peter-evans/create-or-update-comment@v1
with:
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
body: |
> Action has been started. [Click here to see the action](${{ steps.vars.outputs.run-url }})
- name: Git checkout
uses: actions/checkout@v2
with:
ref: 'refs/pull/${{ env.PR_NUMBER }}/merge'
- name: Cache node modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-modules-
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Cache node install
uses: actions/cache@v2
with:
path: 'node_install'
key: ${{ runner.os }}-node_install-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-node_install-
- name: Cleanup resources
run: |
sudo rm -rf /usr/local/lib/android
sudo rm -rf /usr/share/dotnet
df -h
- name: Set up JDK 7
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 7
- name: Set JAVA_HOME
run: |
echo "JAVA_7_HOME=$JAVA_HOME" >> $GITHUB_ENV
echo "JAVA_8_HOME=$JAVA_HOME_8_X64" >> $GITHUB_ENV
echo "JAVA_11_HOME=$JAVA_HOME_11_X64" >> $GITHUB_ENV
echo "JAVA_HOME=$JAVA_HOME_8_X64" >> $GITHUB_ENV
- name: Java Environment
run: env | grep '^JAVA'
- name: Maven build
run: |
./mvnw --batch-mode -Pit-module -DskipTests clean install
- name: Whole Integration Test
if: github.event.client_payload.slash_command.args.all == ''
working-directory: ./plugins-it
run: ../mvnw --batch-mode clean install -Pit-module -Dmaven.test.failure.ignore=true
- name: Integration Test
if: github.event.client_payload.slash_command.args.all != ''
working-directory: ./plugins-it
run: ../mvnw --batch-mode clean install -Pit-module -pl ${{ github.event.client_payload.slash_command.args.all }} -Dmaven.test.failure.ignore=true
- name: Collect reports
working-directory: ./plugins-it
run: |
mkdir -p ./temp
find . -regex ".*/target/failsafe-reports/TEST.*\.xml" -exec cp "{}" ./temp \;
ls temp
- name: Publish Unit Test Results
id: test_reporter
uses: dorny/test-reporter@v1
with:
name: pinpoint-test-results
reporter: java-junit
path: './plugins-it/temp/TEST-*.xml'
fail-on-error: 'false'
- name: Update comment
uses: peter-evans/create-or-update-comment@v1
with:
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
body: |
> ![title](https://img.shields.io/static/v1?label=Tests&message=${{ steps.test_reporter.outputs.passed }}_passed&color=green) ![title](https://img.shields.io/static/v1?label=Tests&message=${{ steps.test_reporter.outputs.failed }}_failed&color=red)