|
| 1 | +name: IntegrationTest |
| 2 | +on: |
| 3 | + push: |
| 4 | + branches: [master] |
| 5 | + tags: [v*] |
| 6 | + paths-ignore: |
| 7 | + - 'LICENSE' |
| 8 | + - 'README.md' |
| 9 | + - '.github/workflows/TagBot.yml' |
| 10 | + pull_request: |
| 11 | + paths-ignore: |
| 12 | + - 'LICENSE' |
| 13 | + - 'README.md' |
| 14 | + - '.github/workflows/TagBot.yml' |
| 15 | + |
| 16 | +concurrency: |
| 17 | + group: build-${{ github.event.pull_request.number || github.ref }}-${{ github.workflow }} |
| 18 | + cancel-in-progress: true |
| 19 | + |
| 20 | +jobs: |
| 21 | + pre_job: |
| 22 | + # continue-on-error: true # Uncomment once integration is finished |
| 23 | + runs-on: ubuntu-latest |
| 24 | + # Map a step output to a job output |
| 25 | + outputs: |
| 26 | + should_skip: ${{ steps.skip_check.outputs.should_skip }} |
| 27 | + steps: |
| 28 | + - id: skip_check |
| 29 | + uses: fkirc/skip-duplicate-actions@v5 |
| 30 | + test: |
| 31 | + needs: pre_job |
| 32 | + if: needs.pre_job.outputs.should_skip != 'true' |
| 33 | + name: ${{ matrix.package.group }}/${{ matrix.package.repo }}/${{ matrix.julia-version }} |
| 34 | + runs-on: ${{ matrix.os }} |
| 35 | + strategy: |
| 36 | + fail-fast: false |
| 37 | + matrix: |
| 38 | + julia-version: ['1'] |
| 39 | + os: [ubuntu-latest] |
| 40 | + package: |
| 41 | + - {repo: ClassicalOrthogonalPolynomials.jl, group: JuliaApproximation} |
| 42 | + - {repo: HarmonicOrthogonalPolynomials.jl, group: JuliaApproximation} |
| 43 | + - {repo: MultivariateOrthogonalPolynomials.jl, group: JuliaApproximation} |
| 44 | + - {repo: PiecewiseOrthogonalPolynomials.jl, group: JuliaApproximation} |
| 45 | + - {repo: SemiclassicalOrthogonalPolynomials.jl, group: JuliaApproximation} |
| 46 | + |
| 47 | + steps: |
| 48 | + - uses: actions/checkout@v4 |
| 49 | + - uses: julia-actions/setup-julia@v2 |
| 50 | + with: |
| 51 | + version: ${{ matrix.julia-version }} |
| 52 | + arch: x64 |
| 53 | + - uses: julia-actions/julia-buildpkg@latest |
| 54 | + - name: Clone Downstream |
| 55 | + uses: actions/checkout@v4 |
| 56 | + with: |
| 57 | + repository: ${{ matrix.package.group }}/${{ matrix.package.repo }} |
| 58 | + path: downstream |
| 59 | + - name: Load this and run the downstream tests |
| 60 | + shell: julia --color=yes --project=downstream {0} |
| 61 | + run: | |
| 62 | + using Pkg |
| 63 | + try |
| 64 | + # force it to use this PR's version of the package |
| 65 | + Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps |
| 66 | + Pkg.update() |
| 67 | + Pkg.test(; coverage = true) # resolver may fail with test time deps |
| 68 | + catch err |
| 69 | + err isa Pkg.Resolve.ResolverError || rethrow() |
| 70 | + # If we can't resolve that means this is incompatible by SemVer and this is fine |
| 71 | + # It means we marked this as a breaking change, so we don't need to worry about |
| 72 | + # Mistakenly introducing a breaking change, as we have intentionally made one |
| 73 | + @info "Not compatible with this release. No problem." exception=err |
| 74 | + exit(0) # Exit immediately, as a success |
| 75 | + end |
| 76 | + - uses: julia-actions/julia-processcoverage@v1 |
| 77 | + - uses: codecov/codecov-action@v4 |
| 78 | + with: |
| 79 | + token: ${{ secrets.CODECOV_TOKEN }} |
| 80 | + files: lcov.info |
0 commit comments