Update EnzymeAD/Enzyme-JAX to commit 94c1d963b66df169478591a5539281005dd85f12 #2304
This file contains hidden or 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: CI with local libReactant | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/CI-localjll.yml' | |
| - 'deps/**' | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| tags: ['*'] | |
| paths: | |
| - '.github/workflows/CI-localjll.yml' | |
| - 'deps/**' | |
| concurrency: | |
| # Skip intermediate builds: always. | |
| # Cancel intermediate builds: only if it is a pull request build. | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| test-localjll: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - "1.10" | |
| - "1.12" | |
| os: | |
| - linux-x86-n2-32 | |
| - macOS-latest | |
| - linux-x86-a2-48-a100-4gpu | |
| exclude: | |
| - os: linux-x86-a2-48-a100-4gpu | |
| version: "1.10" | |
| - os: macOS-latest | |
| version: "1.10" | |
| uses: ./.github/workflows/CommonCI.yml | |
| with: | |
| julia_version: ${{ matrix.version }} | |
| os: ${{ matrix.os }} | |
| runtime: "both" | |
| assertions: false | |
| localjll: true |