This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
Update "old" latest-R and latest-S to point at "new" Orbit Aggregation #100
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
on: [ pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
# Don't cache maven artifacts because we are doing mvn install below which would | |
# mean we would be caching build outputs and not ending up with a clean build. | |
- name: Build | |
run: | | |
mvn clean install --batch-mode --update-snapshots | |
mvn clean install --batch-mode --update-snapshots -f releng/aggregation-mirror-osgi/pom.xml | |
mvn clean install --batch-mode --update-snapshots -f releng/aggregationfeature/pom.xml | |
mvn clean install --batch-mode --update-snapshots -f releng/pom.xml | |