-
Notifications
You must be signed in to change notification settings - Fork 0
118 lines (108 loc) · 3.78 KB
/
build.yml
File metadata and controls
118 lines (108 loc) · 3.78 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
#Workflow name
name: CI/CD Pipeline
env:
VERSION: '17'
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
on:
#Manually trigger workflow runs
workflow_dispatch:
#Trigger the workflow on push from the main branch
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write # required to use OIDC authentication
contents: read
packages: write
checks: write
issues: read
pull-requests: write
security-events: write
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: ${{ env.VERSION }}
distribution: 'adopt'
cache: maven
- name: Build with Maven And skip tests
run: mvn --batch-mode --update-snapshots verify -DskipTests
- name: download datadog agent
run: |
wget --progress=dot:giga -O target/dd-java-agent.jar https://dtdg.co/latest-java-tracer
# - name: Initialize CodeQL
# uses: github/codeql-action/init@v2
# with:
# languages: java
# - name: Autobuild
# uses: github/codeql-action/autobuild@v2
# - name: Perform CodeQL Analysis
# uses: github/codeql-action/analyze@v2
#
# - name: Post to a Slack channel
# if: failure()
# id: slack
# uses: slackapi/slack-github-action@v1.23.0
# with:
# Slack channel id, channel name, or user id to post message.
# See also: https://api.slack.com/methods/chat.postMessage#channels
# You can pass in multiple channels to post to by providing a comma-delimited list of channel IDs.
# channel-id: 'project'
# For posting a simple plain text message
# payload: |
# {
# "text": "",
# "blocks": [
# {
# "type": "section",
# "text": {
# "type": "mrkdwn",
# "text": "GitHub Action build result: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}"
# }
# }
# ]
# }
# env:
# SLACK_BOT_TOKEN: ${{ env.SLACK_BOT_TOKEN }}
#Test's job
# tests:
# needs: build
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Run Unit tests
# run: mvn verify -P unitTests
# - name: Run Integration tests
# run: mvn verify -P integrationTests
# - name: Publish Test Report
# if: always()
# uses: scacap/action-surefire-report@v1
# - name: Post to a Slack channel
# if: failure()
# id: slack
# uses: slackapi/slack-github-action@v1.23.0
# with:
# Slack channel id, channel name, or user id to post message.
# See also: https://api.slack.com/methods/chat.postMessage#channels
# You can pass in multiple channels to post to by providing a comma-delimited list of channel IDs.
# channel-id: 'project'
# For posting a simple plain text message
# payload: |
# {
# "text": "",
# "blocks": [
# {
# "type": "section",
# "text": {
# "type": "mrkdwn",
# "text": "GitHub Action build result: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}"
# }
# }
# ]
# }
# env:
# SLACK_BOT_TOKEN: ${{ env.SLACK_BOT_TOKEN }}