This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
82 lines (67 loc) · 2.42 KB
/
mvn-coded-examples.yaml
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
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven for coded-examples
on:
push:
paths:
- .github/workflows/mvn-coded-examples.yaml
- coded-examples/**
pull_request:
paths:
- .github/workflows/mvn-coded-examples.yaml
- coded-examples/**
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 1
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Support longpaths
if: matrix.os == 'windows-latest'
run: git config --system core.longpaths true
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
java-version: 8.0
distribution: temurin
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-coded-examples
restore-keys: |
${{ runner.os }}-maven-
- name: maven-settings-xml-action
uses: whelk-io/maven-settings-xml-action@v22
with:
repositories: '[{ "id": "redhat-ga-repository", "url": "https://maven.repository.redhat.com/ga" }]'
plugin_repositories: '[{ "id": "redhat-ga-repository", "url": "https://maven.repository.redhat.com/ga" }]'
- name: Run ShellCheck
if: matrix.os == 'ubuntu-latest'
uses: ludeeus/action-shellcheck@master
with:
ignore: bcgithook bdd-ui kogito-quick-start-workshop offliner-maven-plugin pam-eap-setup pam-vagrant rhpam-charts
- name: Build coded-examples
run: |
pushd coded-examples/dmn-examples
mvn -B install --no-transfer-progress
popd
pushd coded-examples/business-central
mvn -B install --no-transfer-progress
popd
pushd coded-examples/spring-boot-examples
mvn -B install --no-transfer-progress
popd
pushd coded-examples/kie-server-extensions
mvn -B install --no-transfer-progress
popd
pushd coded-examples/quarkus-examples
mvn -B install --no-transfer-progress
popd
pushd coded-examples/spring-boot-examples/jms/start-jms
mvn -B install --no-transfer-progress
popd