Skip to content

Add debug informatoin to the compile command #422

Add debug informatoin to the compile command

Add debug informatoin to the compile command #422

Workflow file for this run

name: RosTooling CI
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
path: RosTooling
- name: Install jdk 19
run: sudo apt install -y openjdk-19-jre default-jre default-jdk
- name: Install maven
run: sudo apt install -y maven
- name: Set up Java
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '19'
- name: Debug
run: |
uname -a
mvn --version
java --version
- name: Build and test with Maven
run: |
pushd RosTooling
mvn clean install -X -f plugins/de.fraunhofer.ipa.ros.parent/pom.xml