-
-
Notifications
You must be signed in to change notification settings - Fork 89
70 lines (67 loc) · 1.76 KB
/
Tests.yml
File metadata and controls
70 lines (67 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: "Tests"
on:
pull_request:
branches:
- main
- 'release-'
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- "1"
- "lts"
- "pre"
arch:
- x64
- x86
group:
- "Core"
- "DefaultsLoading"
- "LinearSolveHYPRE"
- "LinearSolvePETSc"
- "LinearSolvePardiso"
- "LinearSolveGinkgo"
- "LinearSolveElemental"
- "NoPre"
- "LinearSolveAutotune"
- "LinearSolvePyAMG"
- "Preferences"
- "Trim"
os:
- ubuntu-latest
- macos-latest
- windows-latest
exclude:
# Don't run trim tests on Julia versions below 1.12
- group: Trim
version: "lts"
- group: Trim
version: "pre"
# MKL Pardiso has numerical issues on pre-release Julia
# See: https://github.com/SciML/LinearSolve.jl/issues/879
- group: LinearSolvePardiso
version: "pre"
# Ginkgo.jl is not available on Windows
- group: LinearSolveGinkgo
os: windows-latest
# Elemental_jll has no Windows binary
- group: LinearSolveElemental
os: windows-latest
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
group: "${{ matrix.group }}"
julia-version: "${{ matrix.version }}"
secrets: "inherit"