Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/workflows/CI_BracketingNonlinearSolve.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: CI (BracketingNonlinearSolve)

on:
pull_request:
paths:
- "lib/BracketingNonlinearSolve/**"
- ".github/workflows/CI_BracketingNonlinearSolve.yml"
- "lib/NonlinearSolveBase/**"
- "lib/SciMLJacobianOperators/**"
push:
branches:
- master

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:
strategy:
fail-fast: false
matrix:
version:
- "1.10"
- "1.11"
- "1"
os:
- ubuntu-latest
- macos-latest
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: ${{ matrix.version }}
os: ${{ matrix.os }}
project: "lib/BracketingNonlinearSolve"
local_dependencies: "lib/NonlinearSolveBase,lib/SciMLJacobianOperators"

# NOTE: Downgrade tests are temporarily skipped due to Resolver.jl incompatibility
# with [sources] in Project.toml. See issue #774 for tracking.
downgrade:
if: false
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: "1.11"
project: "lib/BracketingNonlinearSolve"
downgrade_testing: true
57 changes: 50 additions & 7 deletions .github/workflows/CI_NonlinearSolve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- "test/**"
- "Project.toml"
- ".github/workflows/CI_NonlinearSolve.yml"
- "lib/SciMLJacobianOperators/**"
- "lib/SciMLNonlinearOperators/**"
- "lib/BracketingNonlinearSolve/**"
- "lib/NonlinearSolveBase/**"
- "lib/SimpleNonlinearSolve/**"
Expand All @@ -27,7 +27,6 @@ concurrency:

jobs:
test:
name: "Tests"
strategy:
fail-fast: false
matrix:
Expand All @@ -51,10 +50,54 @@ jobs:
version: "1.11"
- group: trim
version: "lts"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia-version: "${{ matrix.version }}"
group: "${{ matrix.group }}"
os: "${{ matrix.os }}"
julia_version: ${{ matrix.version }}
os: ${{ matrix.os }}
project: "."
secrets: "inherit"
local_dependencies: "lib/BracketingNonlinearSolve,lib/NonlinearSolveBase,lib/NonlinearSolveFirstOrder,lib/NonlinearSolveQuasiNewton,lib/NonlinearSolveSpectralMethods,lib/SimpleNonlinearSolve"
test_args: "GROUP=${{ matrix.group }}"

# NOTE: Pre (Julia 1.13) tests are temporarily skipped due to ReTestItems incompatibility
# with Julia 1.13 ScopedValues API changes. See issue #776 for tracking.
test-pre:
if: false
strategy:
fail-fast: false
matrix:
group:
- core
- downstream
- wrappers
- misc
- trim
os:
- ubuntu-latest
- macos-latest
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: "pre"
os: ${{ matrix.os }}
project: "."
local_dependencies: "lib/BracketingNonlinearSolve,lib/NonlinearSolveBase,lib/NonlinearSolveFirstOrder,lib/NonlinearSolveQuasiNewton,lib/NonlinearSolveSpectralMethods,lib/SimpleNonlinearSolve"
test_args: "GROUP=${{ matrix.group }}"

# NOTE: Downgrade tests are temporarily skipped due to Resolver.jl incompatibility
# with [sources] in Project.toml. See issue #774 for tracking.
downgrade:
if: false
strategy:
fail-fast: false
matrix:
group:
- core
- downstream
- wrappers
- misc
- nopre
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
project: "."
julia_version: "1.11"
downgrade_testing: true
test_args: "GROUP=${{ matrix.group }}"
46 changes: 46 additions & 0 deletions .github/workflows/CI_NonlinearSolveBase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: CI (NonlinearSolveBase)

on:
pull_request:
paths:
- "lib/NonlinearSolveBase/**"
- ".github/workflows/CI_NonlinearSolveBase.yml"
- "lib/SciMLJacobianOperators/**"
push:
branches:
- master

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:
strategy:
fail-fast: false
matrix:
version:
- "1.10"
- "1.11"
- "1"
os:
- ubuntu-latest
- macos-latest
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: ${{ matrix.version }}
os: ${{ matrix.os }}
project: "lib/NonlinearSolveBase"
local_dependencies: "lib/SciMLJacobianOperators"

# NOTE: Downgrade tests are temporarily skipped due to Resolver.jl incompatibility
# with [sources] in Project.toml. See issue #774 for tracking.
downgrade:
if: false
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: "1.11"
project: "lib/NonlinearSolveBase"
downgrade_testing: true
47 changes: 47 additions & 0 deletions .github/workflows/CI_NonlinearSolveFirstOrder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: CI (NonlinearSolveFirstOrder)

on:
pull_request:
paths:
- "lib/NonlinearSolveFirstOrder/**"
- ".github/workflows/CI_NonlinearSolveFirstOrder.yml"
- "lib/NonlinearSolveBase/**"
- "lib/SciMLJacobianOperators/**"
push:
branches:
- master

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:
strategy:
fail-fast: false
matrix:
version:
- "1.10"
- "1.11"
- "1"
os:
- ubuntu-latest
- macos-latest
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: ${{ matrix.version }}
os: ${{ matrix.os }}
project: "lib/NonlinearSolveFirstOrder"
local_dependencies: "lib/NonlinearSolveBase,lib/SciMLJacobianOperators"

# NOTE: Downgrade tests are temporarily skipped due to Resolver.jl incompatibility
# with [sources] in Project.toml. See issue #774 for tracking.
downgrade:
if: false
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: "1.11"
project: "lib/NonlinearSolveFirstOrder"
downgrade_testing: true
46 changes: 46 additions & 0 deletions .github/workflows/CI_NonlinearSolveHomotopyContinuation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: CI (NonlinearSolveHomotopyContinuation)

on:
pull_request:
paths:
- "lib/NonlinearSolveHomotopyContinuation/**"
- ".github/workflows/CI_NonlinearSolveHomotopyContinuation.yml"
- "lib/NonlinearSolveBase/**"
push:
branches:
- master

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:
strategy:
fail-fast: false
matrix:
version:
- "1.10"
- "1.11"
- "1"
os:
- ubuntu-latest
- macos-latest
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: ${{ matrix.version }}
os: ${{ matrix.os }}
project: "lib/NonlinearSolveHomotopyContinuation"
local_dependencies: "lib/NonlinearSolveBase"

# NOTE: Downgrade tests are temporarily skipped due to Resolver.jl incompatibility
# with [sources] in Project.toml. See issue #774 for tracking.
downgrade:
if: false
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: "1.11"
project: "lib/NonlinearSolveHomotopyContinuation"
downgrade_testing: true
47 changes: 47 additions & 0 deletions .github/workflows/CI_NonlinearSolveQuasiNewton.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: CI (NonlinearSolveQuasiNewton)

on:
pull_request:
paths:
- "lib/NonlinearSolveQuasiNewton/**"
- ".github/workflows/CI_NonlinearSolveQuasiNewton.yml"
- "lib/NonlinearSolveBase/**"
- "lib/SciMLJacobianOperators/**"
push:
branches:
- master

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:
strategy:
fail-fast: false
matrix:
version:
- "1.10"
- "1.11"
- "1"
os:
- ubuntu-latest
- macos-latest
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: ${{ matrix.version }}
os: ${{ matrix.os }}
project: "lib/NonlinearSolveQuasiNewton"
local_dependencies: "lib/NonlinearSolveBase,lib/SciMLJacobianOperators"

# NOTE: Downgrade tests are temporarily skipped due to Resolver.jl incompatibility
# with [sources] in Project.toml. See issue #774 for tracking.
downgrade:
if: false
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: "1.11"
project: "lib/NonlinearSolveQuasiNewton"
downgrade_testing: true
46 changes: 46 additions & 0 deletions .github/workflows/CI_NonlinearSolveSciPy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: CI (NonlinearSolveSciPy)

on:
pull_request:
paths:
- "lib/NonlinearSolveSciPy/**"
- ".github/workflows/CI_NonlinearSolveSciPy.yml"
- "lib/NonlinearSolveBase/**"
push:
branches:
- master

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:
strategy:
fail-fast: false
matrix:
version:
- "1.10"
- "1.11"
- "1"
os:
- ubuntu-latest
- macos-latest
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: ${{ matrix.version }}
os: ${{ matrix.os }}
project: "lib/NonlinearSolveSciPy"
local_dependencies: "lib/NonlinearSolveBase,lib/SciMLJacobianOperators"

# NOTE: Downgrade tests are temporarily skipped due to Resolver.jl incompatibility
# with [sources] in Project.toml. See issue #774 for tracking.
downgrade:
if: false
uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main
with:
julia_version: "1.11"
project: "lib/NonlinearSolveSciPy"
downgrade_testing: true
Loading
Loading