Skip to content

Commit

Permalink
Fix rtools40 build (#5326)
Browse files Browse the repository at this point in the history
Fix rtools40 build. vcpkg-tool released a change which no longer treated environment variables as case-insensitive, then removed the variables -- breaking tools which depend on those variables.

Explanation: microsoft/vcpkg#41199 (comment)

x-ref:
```
- microsoft/vcpkg-tool#1501
- via cameleon-rs/cameleon#193
- via microsoft/vcpkg#41154
```
---
TYPE: NO_HISTORY
DESC: Fix rtools40 build.
  • Loading branch information
ihnorton authored Sep 30, 2024
1 parent f67a4cb commit c0fce06
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-rtools40.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
uses: r-windows/install-rtools@master
- name: Building TileDB with Rtools40
run: |
export SystemDrive="$SYSTEMDRIVE"
export SystemRoot="$SYSTEMROOT"
export windir="$WINDIR"
cd ${GITHUB_WORKSPACE}/.github/workflows/mingw-w64-tiledb
pacman -Sy
makepkg-mingw --noconfirm --syncdeps
Expand Down

0 comments on commit c0fce06

Please sign in to comment.