Skip to content

QuickBuild

QuickBuild #2218

Workflow file for this run

name: QuickBuild
on:
schedule:
- cron: '00 00 * * *'
push:
branches:
- '*'
tags: '*'
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: 1.5
- name: Build-Linux
run: julia --color=yes -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.build("ADCME"); using ADCME; install_adept(); ADCME.precompile()'