Skip to content

Create continuous build environment #3

Create continuous build environment

Create continuous build environment #3

Workflow file for this run

#
# Copyright (c) 2018-2023 TNO and Contributors to the GitHub community
#
# This program and the accompanying materials are made available
# under the terms of the MIT License which is available at
# https://opensource.org/licenses/MIT
#
# SPDX-License-Identifier: MIT
#
# This workflow will build PPS with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build and Test PPS
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11 for x64
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
architecture: x64
cache: maven
- name: Build with Maven
run: mvn verify --batch-mode --update-snapshots --fail-at-end --file pom.xml -Dpps.version.enduser=nightly -Dpps.version.qualifier=$(./versionQualifier.sh nightly)
- name: Publish Test Report
if: success() || failure()
uses: scacap/action-surefire-report@v1
- name: Publish update-site
uses: actions/upload-artifact@v3
with:
name: PPS-update-site-nightly
path: products/nl.esi.pps.product/target/repository
- name: Publish product
uses: actions/upload-artifact@v3
with:
name: PPS-product-nightly
path: products/nl.esi.pps.product/target/products/nl.esi.pps.ide/win32/win32/x86_64