Skip to content

Implement thread-safe session registry and REST endpoints for Drools sessions (O3-5064) #10

Implement thread-safe session registry and REST endpoints for Drools sessions (O3-5064)

Implement thread-safe session registry and REST endpoints for Drools sessions (O3-5064) #10

Workflow file for this run

name: Build with Maven
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
platform: [ ubuntu-latest ]
java-version: [ 11 ]
runs-on: ${{ matrix.platform }}
env:
PLATFORM: ${{ matrix.platform }}
JAVA_VERSION: ${{ matrix.java-version }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- name: Build with Maven
id: build_with_maven
run: |
mvn clean verify --batch-mode --file pom.xml
- uses: actions/upload-artifact@v4
with:
name: build_artifact
path: ${{ github.workspace }}/omod/target/*.omod