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
3 changes: 2 additions & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ task:
image_family: freebsd-13-3
env:
matrix:
- JULIA_VERSION: 1
- JULIA_VERSION: 'lts'
- JULIA_VERSION: '1'
install_script: |
URL="https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh"
set -x
Expand Down
22 changes: 15 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,34 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ['1.6', '1']
os: [ubuntu-latest, macOS-latest, windows-latest]
version: ['lts', '1']
os: [ubuntu-latest, macos-latest, windows-latest]
arch: [x64]
allow_failure: [false]
include:
- version: 'nightly'
- version: '1'
os: ubuntu-24.04-arm
arch: arm64
allow_failure: false
- version: '1'
os: macos-latest
arch: arm64
allow_failure: false
- version: 'pre'
os: ubuntu-latest
arch: x64
allow_failure: true
- version: 'nightly'
- version: 'pre'
os: macOS-latest
arch: x64
allow_failure: true
- version: 'nightly'
- version: 'pre'
os: windows-latest
arch: x64
allow_failure: true
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand Down
12 changes: 8 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@ uuid = "f4238b75-b362-5c4c-b852-0801c9a21d71"
version = "0.10.2"

[deps]
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9"
Ipopt_jll = "9cc047cb-c261-5740-88fc-0cf96f7bdcc7"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
NLPModels = "a4795742-8479-5a88-8948-cc11e1c8c1a6"
OpenBLAS32_jll = "656ef2d0-ae68-5445-9ca0-591084a874a2"
SolverCore = "ff4d7338-4cf1-434d-91df-b86cb86fb843"

[compat]
Ipopt = "0.9, 1"
NLPModels = "0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.20, 0.21"
Ipopt_jll = "=300.1400.1700"
LinearAlgebra = "1.10"
NLPModels = "0.21.3"
OpenBLAS32_jll = "0.3.24"
SolverCore = "0.3"
julia = "^1.6"
julia = "1.10"

[extras]
ADNLPModels = "54578032-b7ea-4c30-94aa-7cbd1cce6c9a"
Expand Down
Loading
Loading