-
Notifications
You must be signed in to change notification settings - Fork 1
87 lines (73 loc) · 2.56 KB
/
test.yml
File metadata and controls
87 lines (73 loc) · 2.56 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
name: Test
on:
pull_request:
paths-ignore:
- '**/*.md'
- '.github/environment/**'
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
permissions:
id-token: write
contents: read
jobs:
build_test:
runs-on: ubuntu-latest
environment: test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Setup Docker Structure Test
run: >
curl -LO
https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
&& chmod +x container-structure-test-linux-amd64 && sudo mv container-structure-test-linux-amd64
/usr/local/bin/container-structure-test
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
server-id: 'codeartifact'
server-password: 'CODEARTIFACT_AUTH_TOKEN'
- name: Configure AWS Credentials
id: aws_auth
uses: aws-actions/configure-aws-credentials@v4
with:
audience: sts.amazonaws.com
aws-region: ${{ vars.AWS_REGION }}
role-to-assume: ${{ vars.AWS_ROLE_ARN }}
- name: Get CodeArtifact Repository Authentication Token
run: |
TOKEN=$(aws codeartifact get-authorization-token \
--domain ${{ vars.CODEARTIFACT_DOMAIN }} \
--domain-owner ${{ steps.aws_auth.outputs.aws-account-id }} \
--region ${{ vars.AWS_REGION }} \
--query authorizationToken \
--output text)
echo "CODEARTIFACT_AUTH_TOKEN=$TOKEN" >> "$GITHUB_ENV"
- name: Get CodeArtifact Repository URL
run: |
REPO_URL=$(aws codeartifact get-repository-endpoint \
--domain ${{ vars.CODEARTIFACT_DOMAIN }} \
--repository ${{ vars.CODEARTIFACT_REPO }} \
--format maven \
--region ${{ vars.AWS_REGION }} \
--output text)
echo "CODEARTIFACT_REPO_URL=$REPO_URL" >> "$GITHUB_ENV"
- name: Build with Maven
run: mvn clean -B verify --file pom.xml
- name: Build Docker Image
uses: docker/build-push-action@v5
with:
context: .
load: true
tags: image:${{ github.sha }}
- name: Test Docker Image
run: |
container-structure-test test --image image:${{ github.sha }} --config tests/config.yaml