forked from tronprotocol/java-tron
-
Notifications
You must be signed in to change notification settings - Fork 1
253 lines (252 loc) · 10.7 KB
/
pullrequesttarget.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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
name: Buildkite
on:
workflow_run:
workflows: [CodeQL]
types: [in_progress]
env:
PR_NUMBER: ${{ github.event.number }}
jobs:
sonarScan:
# name: Sonar Scan
# uses: ./.github/workflows/sonarResult.yml
runs-on: ubuntu-latest
outputs:
sourceHeadRepo: ${{ steps.source-run-info.outputs.sourceHeadRepo }}
sourceHeadBranch: ${{ steps.source-run-info.outputs.sourceHeadBranch }}
sourceHeadSha: ${{ steps.source-run-info.outputs.sourceHeadSha }}
mergeCommitSha: ${{ steps.source-run-info.outputs.mergeCommitSha }}
targetCommitSha: ${{ steps.source-run-info.outputs.targetCommitSha }}
pullRequestNumber: ${{ steps.source-run-info.outputs.pullRequestNumber }}
pullRequestLabels: ${{ steps.source-run-info.outputs.pullRequestLabels }}
sourceEvent: ${{ steps.source-run-info.outputs.sourceEvent }}
targetBranch: ${{ steps.source-run-info.outputs.targetBranch }}
steps:
- uses: haya14busa/action-workflow_run-status@v1
- uses: actions/checkout@v2
- name: "Get information about the origin 'CI' run"
uses: potiuk/get-workflow-origin@v1_5
id: source-run-info
with:
token: ${{ secrets.GITHUB_TOKEN }}
sourceRunId: ${{ github.event.workflow_run.id }}
- name: ttt
run: |
echo ${{ steps.source-run-info.outputs.targetBranch }}
echo ${{ steps.source-run-info.outputs.targetCommitSha }}
echo ${{ steps.source-run-info.outputs.mergeCommitSha }}
echo ${{ steps.source-run-info.outputs.pullRequestNumber }}
echo ${{ steps.source-run-info.outputs.sourceEvent }}
echo ${{ steps.source-run-info.outputs.sourceHeadSha }}
echo "head_branch is: ${{ github.event.workflow_run.head_branch }}"
echo "head_sha is: ${{ github.event.workflow_run.head_sha }}"
- name: Trigger Sonar Scan
id: build
uses: "mumianhua/trigger-pipeline-action@v8.0"
with:
buildkite_api_access_token: ${{ secrets.BUILD_KITE_WRITE_TOKEN }}
pipeline: "nnnnnnnnnnnn/notwell1"
branch: ${{ github.event.workflow_run.head_branch }}
commit: ${{ github.event.workflow_run.head_sha }}
pull_request_number: ${{ steps.source-run-info.outputs.pullRequestNumber }}
pull_request_base_branch: ${{ steps.source-run-info.outputs.targetBranch }}
- name: Get Build Kite URL
run: |
echo "buildkite link is: ${{ steps.build.outputs.url }}"
- name: Waitting Buildkite Artifacts
id: download
uses: EnricoMi/download-buildkite-artifact-action@v1
with:
buildkite_token: ${{ secrets.BUILD_KITE_READ_TOKEN }}
buildkite_build_url: ${{ steps.build.outputs.url }}
ignore_build_states: blocked,canceled,skipped,not_run
ignore_job_states: timed_out,failed
output_path: artifacts
- name: Check Result
if: steps.download.outputs.build-state != 'passed'
run: |
echo "failed !!!!"
echo "buildkite result is: ${{ steps.download.outputs.build-state }}"
exit 1
# debianUnitTest:
# name: Debian Unit Test
# runs-on: ubuntu-latest
# steps:
# - name: Check Access
# id: checkAccess
# uses: actions-cool/check-user-permission@v2
# with:
# require: write
# username: ${{ github.triggering_actor }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Check Permission
# if: steps.checkAccess.outputs.require-result == 'false'
# run: |
# echo "${{ github.triggering_actor }} does not have permissions on this repo."
# echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}"
# echo "Job originally triggered by ${{ github.actor }}"
# echo "Please contact organizational account to Re-run all jobs"
# exit 1
# - name: Checkout Code
# uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }} # This is dangerous without the first access check
# - name: Trigger Debian Unit Test
# id: build
# uses: "buildkite/trigger-pipeline-action@v2.0.0"
# with:
# buildkite_api_access_token: ${{ secrets.JUST_BUILD_KITE }}
# pipeline: "tronprotocol/build-on-debian-9-dot-8"
# - name: Get Build Kite URL
# run: |
# echo "buildkite link is: ${{ steps.build.outputs.url }}"
# - name: Waitting Buildkite Artifacts
# id: download
# uses: EnricoMi/download-buildkite-artifact-action@v1
# with:
# buildkite_token: ${{ secrets.READ_BUILD }}
# buildkite_build_url: ${{ steps.build.outputs.url }}
# ignore_build_states: blocked,canceled,skipped,not_run
# ignore_job_states: timed_out,failed
# output_path: artifacts
# - name: Check Result
# if: steps.download.outputs.build-state != 'passed'
# run: |
# echo "failed !!!!"
# echo "buildkite result is: ${{ steps.download.outputs.build-state }}"
# exit 1
# centosUnitTest:
# name: Centos Unit Test
# runs-on: ubuntu-latest
# steps:
# - name: Check Access
# id: checkAccess
# uses: actions-cool/check-user-permission@v2
# with:
# require: write
# username: ${{ github.triggering_actor }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Check Permission
# if: steps.checkAccess.outputs.require-result == 'false'
# run: |
# echo "${{ github.triggering_actor }} does not have permissions on this repo."
# echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}"
# echo "Job originally triggered by ${{ github.actor }}"
# echo "Please contact organizational account to Re-run all jobs"
# exit 1
# - name: Checkout Code
# uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }} # This is dangerous without the first access check
# - name: Trigger Centos Unit Test
# id: build
# uses: "buildkite/trigger-pipeline-action@v2.0.0"
# with:
# buildkite_api_access_token: ${{ secrets.JUST_BUILD_KITE }}
# pipeline: "tronprotocol/build-on-centos-linux-release-7-dot-4-1708-core"
# - name: Waitting Buildkite Artifacts
# id: download
# uses: EnricoMi/download-buildkite-artifact-action@v1
# with:
# buildkite_token: ${{ secrets.READ_BUILD }}
# buildkite_build_url: ${{ steps.build.outputs.url }}
# ignore_build_states: blocked,canceled,skipped,not_run
# ignore_job_states: timed_out,failed
# output_path: artifacts
# - name: Check Result
# if: steps.download.outputs.build-state != 'passed'
# run: |
# echo "failed !!!!"
# echo "buildkite result is: ${{ steps.download.outputs.build-state }}"
# exit 1
# ubuntuUnitTest:
# name: Ubuntu Unit Test
# runs-on: ubuntu-latest
# steps:
# - name: Check Access
# id: checkAccess
# uses: actions-cool/check-user-permission@v2
# with:
# require: write
# username: ${{ github.triggering_actor }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Check Permission
# if: steps.checkAccess.outputs.require-result == 'false'
# run: |
# echo "${{ github.triggering_actor }} does not have permissions on this repo."
# echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}"
# echo "Job originally triggered by ${{ github.actor }}"
# echo "Please contact organizational account to Re-run all jobs"
# exit 1
# - name: Checkout Code
# uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }} # This is dangerous without the first access check
# - name: Trigger Ubuntu Unit Test
# id: build
# uses: "buildkite/trigger-pipeline-action@v2.0.0"
# with:
# buildkite_api_access_token: ${{ secrets.JUST_BUILD_KITE }}
# pipeline: "tronprotocol/build-on-ubuntu-18-dot-04-dot-2"
# - name: Waitting Buildkite Artifacts
# id: download
# uses: EnricoMi/download-buildkite-artifact-action@v1
# with:
# buildkite_token: ${{ secrets.READ_BUILD }}
# buildkite_build_url: ${{ steps.build.outputs.url }}
# ignore_build_states: blocked,canceled,skipped,not_run
# ignore_job_states: timed_out,failed
# output_path: artifacts
# - name: Check Result
# if: steps.download.outputs.build-state != 'passed'
# run: |
# echo "failed !!!!"
# echo "buildkite result is: ${{ steps.download.outputs.build-state }}"
# exit 1
# apiSmokeTesting:
# name: API Smoke Testing
# runs-on: ubuntu-latest
# steps:
# - name: Check Access
# id: checkAccess
# uses: actions-cool/check-user-permission@v2
# with:
# require: write
# username: ${{ github.triggering_actor }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Check Permission
# if: steps.checkAccess.outputs.require-result == 'false'
# run: |
# echo "${{ github.triggering_actor }} does not have permissions on this repo."
# echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}"
# echo "Job originally triggered by ${{ github.actor }}"
# echo "Please contact organizational account to Re-run all jobs"
# exit 1
# - name: Checkout Code
# uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }} # This is dangerous without the first access check
# - name: Trigger API Smoke Testing
# id: build
# uses: "buildkite/trigger-pipeline-action@v2.0.0"
# with:
# buildkite_api_access_token: ${{ secrets.JUST_BUILD_KITE }}
# pipeline: "tronprotocol/interface-status-test-in-docker"
# - name: Waitting Buildkite Artifacts
# id: download
# uses: EnricoMi/download-buildkite-artifact-action@v1
# with:
# buildkite_token: ${{ secrets.READ_BUILD }}
# buildkite_build_url: ${{ steps.build.outputs.url }}
# ignore_build_states: blocked,canceled,skipped,not_run
# ignore_job_states: timed_out,failed
# output_path: artifacts
# - name: Check Result
# if: steps.download.outputs.build-state != 'passed'
# run: |
# echo "failed !!!!"
# echo "buildkite result is: ${{ steps.download.outputs.build-state }}"
# exit 1