Skip to content

executor error handling for gpu cases #2

executor error handling for gpu cases

executor error handling for gpu cases #2

Workflow file for this run

name: Develop CI (Local JLL)
on:
push:
branches:
- develop
tags: ['*']
pull_request:
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:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- 'nightly'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- name: Set up project environment
run: |
julia --project=@. -e '
using Pkg
Pkg.develop(PackageSpec(name="ginkgo_jll", uuid="e4326e8b-370f-5d90-bbd6-f077a22d5a69", url="https://github.com/youwuyou/ginkgo_jll.jl"))
Pkg.instantiate()'
# - uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
files: lcov.info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}