-
Notifications
You must be signed in to change notification settings - Fork 39
53 lines (45 loc) · 1.17 KB
/
ci-ui.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
name: UI CI
on:
push:
branches:
- main
paths:
- 'retail-store-sample-app/src/ui/**'
pull_request:
branches:
- main
paths:
- 'retail-store-sample-app/src/ui/**'
- 'retail-store-sample-app/images/**'
workflow_dispatch:
jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: corretto
java-version: 17
- name: Run CI script
env:
MAVEN_OPTS: "-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
run: |
retail-store-sample-app/src/ui/scripts/ci.sh
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v2
with:
image: tonistiigi/binfmt:latest
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v2
- name: Build container image
run: |
retail-store-sample-app/scripts/build-image.sh -s ui -t ci --actions-cache