Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

debug examples on macOS #162

Merged
merged 10 commits into from
Aug 14, 2024
6 changes: 5 additions & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ jobs:
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- run: |
brew install gfortran
brew install gfortran # the compiler will be called gfortran-14 or similar
echo “$(brew --prefix gcc)/bin” >> $GITHUB_PATH # ensure binary named "gfortran" is discoverable
if: matrix.os == 'macOS-latest'
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: matrix.os == 'macOS-latest'
dpo marked this conversation as resolved.
Show resolved Hide resolved
dpo marked this conversation as resolved.
Show resolved Hide resolved
- run: |
julia --project=examples -e 'using Pkg; Pkg.instantiate(); include(joinpath("examples", "bmark_cutest.jl"))'
Expand Down
Loading