This repository has been archived by the owner on Jun 9, 2024. It is now read-only.
Add references property to the force-data-tree-import task #6
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: | |
paths-ignore: | |
- '.vscode/**' | |
- '.editorconfig' | |
- '**.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
PACKAGE_VERSION: 1.2.${{ github.run_number }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 8 | |
java-package: jdk | |
distribution: temurin | |
- name: Cache binary dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
.tmp/* | |
.tmp/cloc.pl | |
!.tmp/*.gz | |
!.tmp/*.xz | |
!.tmp/*.zip | |
key: bin-${{ hashFiles('build/versions.env') }} | |
- name: Cache Ivy dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ivy | |
key: ivy-${{hashFiles('ivy.xml')}} | |
- name: Prepare build environment | |
shell: bash | |
run: | | |
source build/setenv.sh | |
# Only way to share environment variables between steps... | |
echo "ANT_HOME=$ANT_HOME" >> $GITHUB_ENV | |
echo "PMD_HOME=$PMD_HOME" >> $GITHUB_ENV | |
echo "$ANT_HOME/bin" >> $GITHUB_PATH | |
mkdir -p ivy | |
if [ ! -f ivy/ivy.jar ]; then wget -nv -O ivy/ivy.jar https://repo1.maven.org/maven2/org/apache/ivy/ivy/$_IVY_VERSION/ivy-$_IVY_VERSION.jar; fi | |
java -jar ivy/ivy.jar -retrieve "ivy/lib/[conf]/[artifact].[ext]" -confs build | |
- name: Build | |
shell: bash | |
run: | | |
ant -noclasspath -nouserlib -noinput -logger org.apache.tools.ant.listener.AnsiColorLogger -Dverbosity=debug -f build.xml release | |
- name: JUnit Tests Report | |
if: success() || failure() | |
uses: dorny/test-reporter@v1 | |
with: | |
name: JUnit Tests | |
path: tmp/junit-results.xml | |
reporter: java-junit | |
fail-on-error: true | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts | |
path: | | |
tmp/out/bin/**.* | |
- name: Archive logs | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: logs | |
path: | | |
build.log | |
retention-days: 2 | |
- name: Archive results | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: results | |
path: | | |
tmp/junit-results | |
tmp/*-results.html | |
tmp/*-results.xml | |
retention-days: 8 | |
- name: Create release | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: softprops/action-gh-release@v2 | |
with: | |
draft: true | |
files: | | |
tmp/out/bin/**.* |