Skip to content

Commit

Permalink
chore: fix R build on macOS in verification (#1672)
Browse files Browse the repository at this point in the history
See "Newer C++ features with old SDK" in
https://conda-forge.org/docs/maintainer/knowledge_base/
  • Loading branch information
lidavidm authored Mar 26, 2024
1 parent 758504e commit 1770b0c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/nightly-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
name: Verification (Nightly)

on:
pull_request:
branches:
- main
paths:
- '.github/workflows/nightly-verify.yml'
- 'dev/release/verify-release-candidate.sh'
- 'dev/release/verify-release-candidate.ps1'
schedule:
- cron: "0 0 * * *"
workflow_dispatch: {}
Expand Down
2 changes: 1 addition & 1 deletion r/adbcsqlite/src/Makevars.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

CXXSTD = CXX17
PKG_CPPFLAGS=-I../src/ -I../src/c/ -I../src/c/vendor/ -I../src/c/vendor/fmt/include/ @cppflags@ -DADBC_EXPORT="" -DFMT_HEADER_ONLY=1
PKG_CPPFLAGS=-I../src/ -I../src/c/ -I../src/c/vendor/ -I../src/c/vendor/fmt/include/ @cppflags@ -DADBC_EXPORT="" -DFMT_HEADER_ONLY=1 -D_LIBCPP_DISABLE_AVAILABILITY
PKG_LIBS=@libs@

OBJECTS = init.o \
Expand Down

0 comments on commit 1770b0c

Please sign in to comment.