Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/nightly-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,10 @@ jobs:
# Required for macOS
export CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY"
echo "CXXFLAGS=${CXXFLAGS}"
if [[ $(uname) == "Linux" ]]; then
# conda-forge's R makevars doesn't seem to define CXX20 on Linux
export R_MAKEVARS_USER="$(pwd)/arrow-adbc/ci/r_makevars_cxx20"
fi
./arrow-adbc/dev/release/verify-release-candidate.sh $VERSION 0
- name: Verify
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ jobs:
# Required for macOS
export CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY"
echo "CXXFLAGS=${CXXFLAGS}"
if [[ $(uname) == "Linux" ]]; then
# conda-forge's R makevars doesn't seem to define CXX20 on Linux
export R_MAKEVARS_USER="$(pwd)/ci/r_makevars_cxx20"
fi
./dev/release/verify-release-candidate.sh ${INPUTS_VERSION} ${INPUTS_RC}
- name: Verify
if: matrix.os == 'windows-latest'
Expand Down
Loading