-
Notifications
You must be signed in to change notification settings - Fork 5
57 lines (55 loc) · 1.88 KB
/
github-actions-PR-validation.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
name: PR validation
on:
pull_request:
types: [synchronize, opened, reopened, edited]
branches:
- release-*
- master
- stage
- main
- production
jobs:
test-compile:
runs-on: ubuntu-20.04
steps:
- name: Report workflow details
run: |
echo "Repository ${{ github.repository }}."
echo "Trigger ref ${{ github.ref }}, base-ref ${{ github.base_ref }}, head_ref ${{ github.head_ref }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: cp agr_api/src/main/resources/application.properties.defaults agr_api/src/main/resources/application.properties
- name: Report files updated in PR
run: |
git fetch -q origin ${{ github.base_ref }} ${{ github.head_ref }}
git diff --name-only origin/${{ github.base_ref }} origin/${{ github.head_ref }}
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Report runtime details
run: |
echo "Github runner OS: ${{ runner.os }}"
- name: Report Maven version
run: |
mvn --version
- name: Package Everything
run: |
mvn -T 8 clean package -ntp -DskipTests=true
test-build-docker-image:
runs-on: ubuntu-20.04
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: AWS credentials configuration
uses: aws-actions/configure-aws-credentials@v1-node16
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Amazon ECR login
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build docker image
run: docker build -t agr_java_software:latest .