add N for hardware indices #702
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: CI-KA | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
tags: '*' | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
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: | |
CI: | |
name: CI | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.6' | |
- '1.7' | |
- '1.8' | |
- '1.9' | |
- '1.10' | |
- '~1.11.0-0' | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
- windows-latest | |
arch: | |
- x64 | |
include: | |
- version: 'nightly' | |
os: ubuntu-latest | |
arch: x64 | |
allow_failure: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
show-versioninfo: true | |
- uses: julia-actions/cache@v2 | |
- run: | | |
julia -e ' | |
using Pkg | |
withenv("JULIA_PKG_PRECOMPILE_AUTO" => 0) do | |
Pkg.activate("test") | |
Pkg.add(["Enzyme", "EnzymeCore"]) | |
# to check compatibility, also add Enzyme to the main environment | |
# (or Pkg.test, which merges both environments, could fail) | |
Pkg.activate(".") | |
# Try to co-develop Enzyme and KA | |
try | |
Pkg.develop([PackageSpec("Enzyme"), PackageSpec("EnzymeCore")]) | |
catch err | |
end | |
end | |
' | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-runtest@v1 | |
with: | |
annotate: true | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v4 | |
with: | |
file: lcov.info | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: '1' | |
- run: | | |
julia --project=docs -e 'import Pkg; Pkg.develop(path=".")' | |
julia --project=docs docs/make.jl | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
doctests: | |
name: Doctests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: '1' | |
- run: | | |
julia --project=docs -e 'import Pkg; Pkg.develop(path=".")' | |
julia --project=docs -e ' | |
using Documenter: doctest | |
using KernelAbstractions | |
doctest(KernelAbstractions; manual = true)' |