Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
os: macos-latest
arch: arm64
allow_failure: false
- version: 'nightly'
- version: 'pre'
os: ubuntu-latest
arch: x64
allow_failure: true
- version: 'nightly'
- version: 'pre'
os: windows-latest
arch: x64
allow_failure: true
- version: 'nightly'
- version: 'pre'
os: macos-13
arch: x64
allow_failure: true
Expand Down
2 changes: 1 addition & 1 deletion src/CUTEst.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ isdir(libsif_path) || mkpath(libsif_path)
function __init__()
if !Sys.iswindows()
# gfortran is installed with an artifact on Windows
if !success(`bash -c "type gfortran"`)
if Sys.which("gfortran") |> isnothing
error("gfortran is not installed. Please install it and try again.")
else
arch_julia = String(Sys.ARCH)
Expand Down
Loading