-
-
Notifications
You must be signed in to change notification settings - Fork 7
49 lines (46 loc) · 1.58 KB
/
core-baseStation.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
# This is a basic workflow to help you get started with Actions
name: CI - Core - Base Station
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ "**" ]
paths:
- "software/oqm-core-base-station/**"
- ".github/workflows/core-baseStation.yml"
- ".github/workflows/wf-gradleBuild.yaml"
- ".github/workflows/wf-gradleUnitTest.yaml"
- ".github/workflows/wf-gradleQuarkusIntTest.yaml"
- ".github/workflows/wf-setup.yaml"
pull_request:
branches: [ "**" ]
paths:
- "software/oqm-core-base-station/**"
- ".github/workflows/core-baseStation.yml"
- ".github/workflows/wf-gradleBuild.yaml"
- ".github/workflows/wf-gradleUnitTest.yaml"
- ".github/workflows/wf-gradleQuarkusIntTest.yaml"
workflow_call:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
defaults:
run:
working-directory: "software/oqm-core-base-station"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
uses: ./.github/workflows/wf-gradleBuild.yaml
with:
path: "software/oqm-core-base-station"
unitTest:
uses: ./.github/workflows/wf-gradleUnitTest.yaml
with:
path: "software/oqm-core-base-station"
intTest:
uses: ./.github/workflows/wf-gradleQuarkusIntTest.yaml
strategy:
matrix:
containerBased: [ false ] # TODO:: enable true
with:
path: "software/oqm-core-base-station"
containerBased: ${{ matrix.containerBased }}