feat(scion-rcp): remove tms-kast-demo app #521
Workflow file for this run
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
name: Build | |
on: | |
push: | |
pull_request: | |
types: [opened] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v4 | |
- name: 'Setup JDK' | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: 'Setup Lombok' | |
uses: ./.github/actions/setup-lombok | |
id: setup-lombok | |
with: | |
lombok-version: 1.18.26 | |
- name: 'Run Maven' | |
run: mvn -B clean verify -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | |
env: | |
MAVEN_OPTS: "-javaagent:${{ steps.setup-lombok.outputs.lombok-jar }}" | |
- name: 'Upload microfrontend library' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: microfrontend-library | |
path: | | |
ch.sbb.scion.rcp.microfrontend/target/*.jar | |
- name: 'Upload workbench library' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: workbench-library | |
path: | | |
ch.sbb.scion.rcp.workbench/target/*.jar |