Make Enzyme the only compatible AD engine #159
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: Nightly | |
on: | |
pull_request: | |
jobs: | |
test: | |
name: Julia nightly - ${{ matrix.group }} - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
group: | |
- Core | |
arch: | |
- x64 | |
python-version: | |
- '3.10' | |
steps: | |
- name: Install Libs | |
run: | | |
sudo apt-get update | |
sudo apt-get install libhdf5-dev | |
sudo apt-get install --reinstall libxcb-xinerama0 | |
- uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: ${{ matrix.arch }} | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: nightly | |
arch: x64 | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-runtest@latest | |
env: | |
PYTHON: "" | |
COMRADE_TEST_GROUP: ${{ matrix.group }} |