Skip to content

DJL Demo Nightly test #1233

DJL Demo Nightly test

DJL Demo Nightly test #1233

Workflow file for this run

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