File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4545 if : runner.os == 'Windows'
4646 run : |
4747 $ARCH = if ('${{ matrix.os }}' -eq 'windows-11-arm') { 'aarch64' } else { 'x86_64' }
48- $RTOOLS = if ('${{ matrix.os }}' -eq 'windows-11-arm') { ' rtools45-$ARCH' } else { 'rtools45' }
49- Invoke-WebRequest -Uri https://github.com/r-hub/rtools45/releases/download/latest/$RTOOLS.exe -OutFile $RTOOLS.exe
50- Start-Process -FilePath $RTOOLS.exe -ArgumentList "/install /norestart /verysilent /SUPPRESSMSGBOXES" -NoNewWindow -Wait
48+ $RTOOLS = if ('${{ matrix.os }}' -eq 'windows-11-arm') { " rtools45-$ARCH" } else { 'rtools45' }
49+ Invoke-WebRequest -Uri https://github.com/r-hub/rtools45/releases/download/latest/$RTOOLS.exe -OutFile " $RTOOLS.exe"
50+ Start-Process -FilePath " $RTOOLS.exe" -ArgumentList "/install /norestart /verysilent /SUPPRESSMSGBOXES" -NoNewWindow -Wait
5151 echo "C:/$RTOOLS/usr/bin;C:/$RTOOLS/$ARCH-w64-mingw32.static.posix/bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
5252
5353 - name : Build Math libs
9393 if : runner.os == 'Windows'
9494 run : |
9595 $ARCH = if ('${{ matrix.os }}' -eq 'windows-11-arm') { 'aarch64' } else { 'x86_64' }
96- $RTOOLS = if ('${{ matrix.os }}' -eq 'windows-11-arm') { ' rtools45-$ARCH' } else { 'rtools45' }
97- Invoke-WebRequest -Uri https://github.com/r-hub/rtools45/releases/download/latest/$RTOOLS.exe -OutFile $RTOOLS.exe
98- Start-Process -FilePath $RTOOLS.exe -ArgumentList "/install /norestart /verysilent /SUPPRESSMSGBOXES" -NoNewWindow -Wait
96+ $RTOOLS = if ('${{ matrix.os }}' -eq 'windows-11-arm') { " rtools45-$ARCH" } else { 'rtools45' }
97+ Invoke-WebRequest -Uri https://github.com/r-hub/rtools45/releases/download/latest/$RTOOLS.exe -OutFile " $RTOOLS.exe"
98+ Start-Process -FilePath " $RTOOLS.exe" -ArgumentList "/install /norestart /verysilent /SUPPRESSMSGBOXES" -NoNewWindow -Wait
9999 echo "C:/$RTOOLS/usr/bin;C:/$RTOOLS/$ARCH-w64-mingw32.static.posix/bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
100100
101101 - name : Build Math libs
You can’t perform that action at this time.
0 commit comments