add sinh/cosh/tanh support for llvm19+ #6670
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: Julia Enzyme CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
merge_group: | |
jobs: | |
build: | |
name: Enzyme CI Julia ${{ matrix.version }} ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.version == 'nightly' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.10' | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
arch: | |
- x64 | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'EnzymeAD/Enzyme.jl' | |
path: ./jl | |
ref: main | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- name: Build libEnzyme | |
if: ${{ matrix.os != 'macOS-latest'}} | |
run: | | |
julia --project=jl/deps -e 'using Pkg; Pkg.instantiate()' | |
julia --project=jl/deps jl/deps/build_local.jl ./enzyme | |
- name: Build libEnzyme MacOS | |
if: ${{ matrix.os == 'macOS-latest'}} | |
run: | | |
julia --project=jl/deps -e 'using Pkg; Pkg.instantiate()' | |
SDKROOT=`xcrun --show-sdk-path` julia --project=jl/deps jl/deps/build_local.jl ./enzyme | |
- name: Dev EnzymeCore | |
run: julia --project=jl -e 'using Pkg; Pkg.develop(path="jl/lib/EnzymeCore")' | |
- uses: julia-actions/julia-buildpkg@v1 | |
with: | |
project: jl | |
- uses: julia-actions/julia-runtest@v1 | |
with: | |
project: jl |