Skip to content

Merge pull request #198 from SCADA-LTS/develop #77

Merge pull request #198 from SCADA-LTS/develop

Merge pull request #198 from SCADA-LTS/develop #77

Workflow file for this run

name: Java CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn clean install -P localhost
- run: mkdir staging && cp scada-lts-e2e-cli/target/*localhost*.jar staging
- uses: actions/upload-artifact@v2
with:
name: Package
path: staging