Test against Enzyme #601
Workflow file for this run
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: AD tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.version == 'nightly' }} | |
strategy: | |
matrix: | |
version: | |
#- '1.6' # TODO(mhauru) Disabled temporarily for Enzyme testing | |
- '1' | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
arch: | |
- x64 | |
AD: | |
# TODO(mhauru) Disabled temporarily for Enzyme testing | |
#- ForwardDiff | |
#- Tracker | |
- ReverseDiff | |
#- Zygote | |
- Enzyme | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-runtest@latest | |
env: | |
GROUP: AD | |
AD: ${{ matrix.AD }} |