This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 1770b0cf3 chore: fix R build on macOS in verification (#1672)
1770b0cf3 is described below

commit 1770b0cf3d1ae9de67ae97f48ffe5a5b30aee67c
Author: David Li <[email protected]>
AuthorDate: Tue Mar 26 12:38:24 2024 -0400

    chore: fix R build on macOS in verification (#1672)
    
    See "Newer C++ features with old SDK" in
    https://conda-forge.org/docs/maintainer/knowledge_base/
---
 .github/workflows/nightly-verify.yml | 7 +++++++
 r/adbcsqlite/src/Makevars.in         | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/nightly-verify.yml 
b/.github/workflows/nightly-verify.yml
index fb0cf30a6..14263b883 100644
--- a/.github/workflows/nightly-verify.yml
+++ b/.github/workflows/nightly-verify.yml
@@ -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: {}
diff --git a/r/adbcsqlite/src/Makevars.in b/r/adbcsqlite/src/Makevars.in
index 84669a5ab..bd1e4419a 100644
--- a/r/adbcsqlite/src/Makevars.in
+++ b/r/adbcsqlite/src/Makevars.in
@@ -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 \

Reply via email to