-
Notifications
You must be signed in to change notification settings - Fork 4
39 lines (39 loc) · 943 Bytes
/
ci.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
name: CI
on:
push:
branches:
- main
paths:
- src/**
- pom.xml
- .github/workflows/*
pull_request:
branches:
- main
paths:
- src/**
- pom.xml
- .github/workflows/*
jobs:
test:
uses: making/workflows/.github/workflows/maven-unit-test.yaml@main
build-jvm-image:
needs: test
uses: making/workflows/.github/workflows/build-docker-image-maven-jvm.yaml@main
with:
image_file: image.yaml
build-native-image:
needs: test
uses: making/workflows/.github/workflows/build-docker-image-maven-native.yaml@main
with:
image_file: image_native.yaml
save-image-jvm:
needs: build-jvm-image
uses: making/workflows/.github/workflows/save-images.yaml@main
with:
image_file: image.yaml
save-image-native:
needs: build-native-image
uses: making/workflows/.github/workflows/save-images.yaml@main
with:
image_file: image_native.yaml