-
Notifications
You must be signed in to change notification settings - Fork 66
72 lines (68 loc) · 2.64 KB
/
IntegrationTest.yml
File metadata and controls
72 lines (68 loc) · 2.64 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
71
72
name: IntegrationTest
on:
push:
branches: [main]
tags: [v*]
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: ${{ matrix.package.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version: [1]
os: [ubuntu-latest]
package:
- {user: JuliaDiff, name: ChainRules}
- {user: JuliaDiff, name: ChainRulesTestUtils}
- {user: JuliaDiff, name: ChainRulesOverloadGeneration}
- {user: JuliaMath, name: SpecialFunctions}
- {user: invenia, name: BlockDiagonals}
- {user: invenia, name: PDMatsExtras}
- {user: chrisbrahms, name: Hankel}
- {user: SciML, name: DiffEqBase}
- {user: SciML, name: DataInterpolations}
- {user: dfdx, name: Yota}
- {user: JuliaStats, name: StatsFuns}
- {user: JuliaStats, name: LogExpFunctions}
# Diffractor needs to run on Julia nightly
include:
- julia-version: nightly
os: ubuntu-latest
package: {user: JuliaDiff, name: Diffractor}
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
arch: x64
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-buildpkg@v1
- name: Clone Downstream
uses: actions/checkout@v6
with:
repository: ${{ matrix.package.user }}/${{ matrix.package.name }}.jl
path: downstream
- name: Load this and run the downstream tests
shell: julia --project=@temp {0}
run: |
using Pkg
try
# force it to use this PR's version of the package
Pkg.develop([PackageSpec(path="."), PackageSpec(path="downstream")]) # resolver may fail with main deps
Pkg.update()
Pkg.test("${{ matrix.package.name }}") # resolver may fail with test time deps
catch err
err isa Pkg.Resolve.ResolverError || rethrow()
# If we can't resolve that means this is incompatible by SemVer and this is fine
# It means we marked this as a breaking change, so we don't need to worry about
# Mistakenly introducing a breaking change, as we have intentionally made one
@info "Not compatible with this release. No problem." exception=err
exit(0) # Exit immediately, as a success
end