DJL Demo Nightly test #1345
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: DJL Demo Nightly test | |
on: | |
schedule: | |
- cron: '0 3 * * *' | |
workflow_dispatch: | |
jobs: | |
compile-test: | |
if: github.repository == 'deepjavalibrary/djl-demo' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: 17 | |
- name: Compile all gradle projects | |
run: ./gradlew build | |
- name: Compile Apache Beam | |
working-directory: apache-beam/ctr-prediction | |
run: mvn package | |
- name: Compile Apache Camel | |
working-directory: camel-djl | |
run: mvn package |