From 98bdd4b1eaed04213e15397fabb84a83b7c7f40a Mon Sep 17 00:00:00 2001 From: Alexander Plavin Date: Mon, 27 Jun 2022 17:37:19 +0300 Subject: [PATCH 1/2] add downstream CI --- .github/workflows/Downstream.yml | 51 ++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/Downstream.yml diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml new file mode 100644 index 0000000..2d9d3ab --- /dev/null +++ b/.github/workflows/Downstream.yml @@ -0,0 +1,51 @@ +name: IntegrationTest +on: + push: + pull_request: + +jobs: + test: + name: ${{ matrix.package.repo }}/${{ matrix.julia-version }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + julia-version: [1.6, 1, nightly] + os: [ubuntu-latest] + package: + - {repo: JuliaObjects/Accessors.jl} + - {repo: JuliaFolds/BangBang.jl} + - {repo: jw3126/Setfield.jl} + steps: + - uses: actions/checkout@v2 + - uses: julia-actions/setup-julia@v1 + with: + version: ${{ matrix.julia-version }} + arch: x64 + - uses: julia-actions/julia-buildpkg@latest + - name: Clone Downstream + uses: actions/checkout@v2 + with: + repository: ${{ matrix.package.repo }} + path: downstream + - name: Load this and run the downstream tests + shell: julia --color=yes --project=downstream {0} + run: | + using Pkg + try + # force it to use this PR's version of the package + Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps + Pkg.update() + Pkg.test(coverage=true) # 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 + - uses: julia-actions/julia-processcoverage@v1 + - uses: codecov/codecov-action@v1 + with: + file: lcov.info From 498eea84bdc67d721632d00e07688c4e98ea2b25 Mon Sep 17 00:00:00 2001 From: Jan Weidner Date: Tue, 28 Jun 2022 09:43:49 +0200 Subject: [PATCH 2/2] Update .github/workflows/Downstream.yml --- .github/workflows/Downstream.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml index 2d9d3ab..805c696 100644 --- a/.github/workflows/Downstream.yml +++ b/.github/workflows/Downstream.yml @@ -16,6 +16,7 @@ jobs: - {repo: JuliaObjects/Accessors.jl} - {repo: JuliaFolds/BangBang.jl} - {repo: jw3126/Setfield.jl} + - {repo: rafaqz/Flatten.jl} steps: - uses: actions/checkout@v2 - uses: julia-actions/setup-julia@v1