Skip to content
Draft
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
40 changes: 17 additions & 23 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ concurrency:
permissions:
contents: read

env:
JULIA_PYTHONCALL_EXE: "@CondaPkg"

jobs:
finalize:
timeout-minutes: 10
Expand All @@ -38,37 +41,28 @@ jobs:
actions: write
contents: read
runs-on: ${{ matrix.os }}
timeout-minutes: 90
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
version:
- "1.6"
- "1.11"
- "lts"
- "1"
os:
- ubuntu-latest
- macos-13
- macos-latest
- windows-latest
# macOS 1.6 seems to consistently stall on `Plots` notebooks. Skip this
# macOS min seems to consistently stall on `Plots` notebooks. Skip this
# combination and test on a slightly newer macOS version instead.
# 1.6 windows has recently stalled out on mimetypes, use 1.7 windows in
# the tests. We still test 1.6 on Linux.
# min windows has recently stalled out on mimetypes, use lts windows in
# the tests. We still test min on Linux.
exclude:
- version: "1.6"
os: macos-13
os: macos-latest
- version: "1.6"
os: windows-latest
# Performance regressions on Julia 1.11 on Windows. Currently not
# viable to run the test suite there.
- version: "1.11"
os: windows-latest
include:
- version: "1.7"
os: macos-13
- version: "1.7"
os: windows-latest
- version: "1.10"
os: windows-latest

steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
Expand All @@ -83,16 +77,16 @@ jobs:
- run: juliaup add 1.10.7
- run: juliaup add 1.11.2

- uses: julia-actions/cache@d10a6fd8f31b12404a54613ebad242900567f2b9 # v2.1.0
# - uses: julia-actions/cache@d10a6fd8f31b12404a54613ebad242900567f2b9 # v2.1.0

- uses: r-lib/actions/setup-r@bd49c52ffe281809afa6f0fecbf37483c5dd0b93 # v2.11.3
with:
use-public-rspm: true
r-version: "4.3.3"
- run: echo "LD_LIBRARY_PATH=$(R RHOME)/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV
if: matrix.os == 'ubuntu-latest'
- run: julia -e 'cp("/usr/lib/x86_64-linux-gnu/libstdc++.so.6", joinpath(dirname(Sys.BINDIR), "lib", "julia", "libstdc++.so.6"); force = true)'
if: matrix.os == 'ubuntu-latest' && matrix.version == '1.6'
- run: julia -e 'cp("/usr/lib/x86_64-linux-gnu/libstdc++.so.6", joinpath(dirname(Sys.BINDIR), "lib", "julia", "libstdc++.so.6"); force = true)'
if: matrix.os == 'ubuntu-latest' && matrix.version == 'min'

# TODO: use quarto_jll for integration tests once modern enough versions are available
- uses: quarto-dev/quarto-actions/setup@9e48da27e184aa238fcb49f5db75469626d43adb # v2.1.9
Expand All @@ -104,9 +98,9 @@ jobs:
with:
depwarn: "yes"
- uses: julia-actions/julia-processcoverage@03114f09f119417c3242a9fb6e0b722676aedf38 # v1.2.2
if: matrix.os == 'ubuntu-latest' && matrix.version == '1.11'
if: matrix.os == 'ubuntu-latest' && matrix.version == '1'
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
if: matrix.os == 'ubuntu-latest' && matrix.version == '1.11'
if: matrix.os == 'ubuntu-latest' && matrix.version == '1'
with:
verbose: true
files: lcov.info
Expand Down
2 changes: 2 additions & 0 deletions debug/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[deps]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
9 changes: 9 additions & 0 deletions debug/file.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
engine: julia
julia:
exeflags: ["+1.12"]
---

```{julia}
VERSION
```

Large diffs are not rendered by default.

Loading
Loading