Conversation
|
@cderv would you be able to help get this reproducing the issue. Also see question here #206 (comment) |
|
yes, I'll try to diagnose further the issue of why I'll look at #206 also. |
|
So I spent my morning trying to understand deeper what was happening, and it was in fact an unexpected configuration and conflict between two actions:
So if I tweak/fix the PATH before Julia setup action, I can make it work. Workflow file if you want to try it yourself name: test-julia-install
on: [workflow_dispatch]
jobs:
install:
runs-on: windows-latest
name: Test Julia install on windows
steps:
- uses: actions/checkout@v4
- run: $env:PATH -Split ";"
shell: powershell
- run: gcm tar
shell: powershell
- uses: r-lib/actions/setup-r@v2
# uncomment the following line to fix julia setup
# but it will have side effect probably on R setup
# with:
# windows-path-include-rtools: false
- run: $env:PATH -Split ";"
shell: powershell
- run: gcm tar
shell: powershell
- uses: julia-actions/setup-julia@v1
with:
version: '1.10'However, I believe it is still not ideal for Line 271 in a1561e9
So either ensuring the right tar is used or the same drive is used could be safer. Sorry for the trouble in the first place. |
|
Should we give users the option to specify which |
Adds test for #205
Should fail on windows on master