Skip to content
Merged
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: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,11 @@ jobs:
if: "${{ inputs.buildpkg && inputs.project != '@.' && inputs.project != '.' }}"
shell: julia --color=yes {0}
run: |
include(joinpath(".sciml-dotgithub", "scripts", "develop_sources.jl"))
# `shell: julia {0}` writes this body to a temp file under RUNNER_TEMP and
# runs it from there, so a *relative* `include` resolves against RUNNER_TEMP,
# not the workspace where `.sciml-dotgithub` was checked out. Anchor at
# GITHUB_WORKSPACE so it resolves regardless of the script's location.
include(joinpath(ENV["GITHUB_WORKSPACE"], ".sciml-dotgithub", "scripts", "develop_sources.jl"))
develop_sources(raw"${{ inputs.project }}")

- name: "Install system packages"
Expand Down
Loading