@@ -27,42 +27,44 @@ jobs:
27
27
- {user: SciML, repo: BoundaryValueDiffEq.jl, group: All}
28
28
- {user: SciML, repo: DiffEqCallbacks.jl, group: All}
29
29
steps :
30
- - uses : actions/checkout@v4
31
- - uses : julia-actions/setup-julia@v2
32
- with :
33
- version : ${{ matrix.julia-version }}
34
- arch : x64
35
- - uses : julia-actions/julia-buildpkg@latest
36
- - name : Clone Downstream
37
- uses : actions/checkout@v4
38
- with :
39
- repository : ${{ matrix.package.user }}/${{ matrix.package.repo }}
40
- path : downstream
41
- - name : Load this and run the downstream tests
42
- shell : julia --color=yes --project=downstream {0}
43
- run : |
44
- using Pkg
45
- try
46
- # force it to use this PR's version of the package
47
- Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
48
- Pkg.update()
49
- Pkg.test(coverage=true) # resolver may fail with test time deps
50
- catch err
51
- err isa Pkg.Resolve.ResolverError || rethrow()
52
- # If we can't resolve that means this is incompatible by SemVer and this is fine
53
- # It means we marked this as a breaking change, so we don't need to worry about
54
- # Mistakenly introducing a breaking change, as we have intentionally made one
55
- @info "Not compatible with this release. No problem." exception=err
56
- exit(0) # Exit immediately, as a success
57
- end
58
- env :
59
- RETESTITEMS_NWORKERS : 4
60
- RETESTITEMS_NWORKER_THREADS : 2
61
- - uses : julia-actions/julia-processcoverage@v1
62
- with :
63
- directories : src,ext
64
- - uses : codecov/codecov-action@v4
65
- with :
66
- file : lcov.info
67
- token : ${{ secrets.CODECOV_TOKEN }}
68
- fail_ci_if_error : true
30
+ - name : " Stub"
31
+ run : echo "Remember to uncomment the following steps!!!!!!!!"
32
+ # - uses: actions/checkout@v4
33
+ # - uses: julia-actions/setup-julia@v2
34
+ # with:
35
+ # version: ${{ matrix.julia-version }}
36
+ # arch: x64
37
+ # - uses: julia-actions/julia-buildpkg@latest
38
+ # - name: Clone Downstream
39
+ # uses: actions/checkout@v4
40
+ # with:
41
+ # repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
42
+ # path: downstream
43
+ # - name: Load this and run the downstream tests
44
+ # shell: julia --color=yes --project=downstream {0}
45
+ # run: |
46
+ # using Pkg
47
+ # try
48
+ # # force it to use this PR's version of the package
49
+ # Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
50
+ # Pkg.update()
51
+ # Pkg.test(coverage=true) # resolver may fail with test time deps
52
+ # catch err
53
+ # err isa Pkg.Resolve.ResolverError || rethrow()
54
+ # # If we can't resolve that means this is incompatible by SemVer and this is fine
55
+ # # It means we marked this as a breaking change, so we don't need to worry about
56
+ # # Mistakenly introducing a breaking change, as we have intentionally made one
57
+ # @info "Not compatible with this release. No problem." exception=err
58
+ # exit(0) # Exit immediately, as a success
59
+ # end
60
+ # env:
61
+ # RETESTITEMS_NWORKERS: 4
62
+ # RETESTITEMS_NWORKER_THREADS: 2
63
+ # - uses: julia-actions/julia-processcoverage@v1
64
+ # with:
65
+ # directories: src,ext
66
+ # - uses: codecov/codecov-action@v4
67
+ # with:
68
+ # file: lcov.info
69
+ # token: ${{ secrets.CODECOV_TOKEN }}
70
+ # fail_ci_if_error: true
0 commit comments