change root to parent for parent child relation (#601) #319
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 Branch" | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# test against JDK 8 | |
java: [ 8 ] | |
name: CI with Java ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup jdk | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.ORG_NETFLIXOSS_DOCKERHUB_USERNAME }} | |
password: ${{ secrets.ORG_NETFLIXOSS_DOCKERHUB_PASSWORD }} | |
- uses: actions/cache@v1 | |
id: gradle-cache | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }} | |
restore-keys: | | |
- ${{ runner.os }}-gradle- | |
- uses: actions/cache@v1 | |
id: gradle-wrapper-cache | |
with: | |
path: ~/.gradle/wrapper | |
key: ${{ runner.os }}-gradlewrapper-${{ hashFiles('gradle/wrapper/*') }} | |
restore-keys: | | |
- ${{ runner.os }}-gradlewrapper- | |
- name: Build with Gradle | |
run: ./gradlew --info --stacktrace build | |
env: | |
CI_NAME: github_actions | |
CI_BUILD_NUMBER: ${{ github.sha }} | |
CI_BUILD_URL: 'https://github.com/${{ github.repository }}' | |
CI_BRANCH: ${{ github.ref }} | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
if: ${{ failure() }} | | |
- name=$(date +"%Y-%m-%d") && cat ./metacat-functional-tests/build/logs/metacat/catalina.$name.log | |
- name=$(date +"%Y-%m-%d") && cat ./metacat-functional-tests/build/logs/metacat/localhost.$name.log | |
- cat ./metacat-functional-tests/build/logs/metacat/spring.log |