-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create setup action and new full pipeline poc
- Loading branch information
1 parent
f42dd62
commit c3c7f3a
Showing
11 changed files
with
96 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: 'WF - setup runner' | ||
description: 'sets up java on the runner' | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '21' | ||
distribution: 'adopt' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Build and Test All Gradle Apps | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run_pipeline: | ||
uses: ./.github/workflows/wf-full-pipeline.yaml | ||
strategy: | ||
matrix: | ||
path: ["software/oqm-core-api"] | ||
# path: ["software/oqm-core-api", "software/oqm-core-base-station", "software/plugins/alert-messenger/"] | ||
with: | ||
path: ${{ matrix.path }} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
run-name: Pipeline build for ${{ inputs.path }} | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
workflow_call: | ||
inputs: | ||
path: | ||
required: true | ||
type: string | ||
# Allows you to run this workflow manually from the Actions tab | ||
|
||
env: | ||
PATH: ${{ inputs.path }} | ||
# 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: ${{ inputs.path }} | ||
unitTest: | ||
uses: ./.github/workflows/wf-gradleUnitTest.yaml | ||
with: | ||
path: ${{ inputs.path }} | ||
intTest: | ||
uses: ./.github/workflows/wf-gradleQuarkusIntTest.yaml | ||
strategy: | ||
matrix: | ||
containerBased: [ false ] # TODO:: enable true | ||
with: | ||
path: ${{ inputs.path }} | ||
containerBased: ${{ matrix.containerBased }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters