assignUser commented on code in PR #37684:
URL: https://github.com/apache/arrow/pull/37684#discussion_r1340113493
##########
dev/tasks/r/github.packages.yml:
##########
@@ -56,6 +56,57 @@ jobs:
name: r-pkg__src__contrib
path: arrow/r/arrow_*.tar.gz
+ macos-cpp:
+ name: C++ Binary macOS OpenSSL {{ '${{ matrix.openssl }}' }} {{ '${{
matrix.platform.arch }}'}}
+ runs-on: {{ '${{ matrix.platform.runs_on }}'}}
+ needs: source
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - { runs_on: ["self-hosted", "macos-10.13"], arch: "x86_64" }
+ - { runs_on: ["self-hosted", "macOS", "arm64", "devops-managed"],
arch: "arm64" }
+ openssl: ['3.0', '1.1']
+
+ steps:
+ {{ macros.github_checkout_arrow(action_v="3")|indent }}
+ {{ macros.github_change_r_pkg_version(is_fork, '${{
needs.source.outputs.pkg_version }}')|indent }}
+ - name: Install Deps
+ if: {{ "${{ !contains(matrix.platform.runs_on, 'macos-10.13') }}" }}
+ run: |
+ brew install sccache ninja
+ brew install openssl@{{ '${{ matrix.openssl }}' }}
+ - name: Build libarrow
+ shell: bash
+ env:
+ {{ macros.github_set_sccache_envvars()|indent(8) }}
+ MACOSX_DEPLOYMENT_TARGET: "10.13"
+ ARROW_S3: ON
+ ARROW_GCS: ON
+ ARROW_DEPENDENCY_SOURCE: BUNDLED
+ CMAKE_GENERATOR: Ninja
+ LIBARROW_MINIMAL: false
+ run: |
+ sccache --start-server
+ export EXTRA_CMAKE_FLAGS="-DOPENSSL_ROOT_DIR=$(brew --prefix
openssl@{{ '${{ matrix.openssl }}' }})"
+ cd arrow
+ r/inst/build_arrow_static.sh
+ - name: Bundle libarrow
+ shell: bash
+ env:
+ PKG_FILE: arrow-{{ '${{ needs.source.outputs.pkg_version }}' }}.zip
+ VERSION: {{ '${{ needs.source.outputs.pkg_version }}' }}
+ run: |
+ cd arrow/r/libarrow/dist
+ # These files were created by the docker user so we have to sudo to
get them
Review Comment:
ah yeah copy paste remnant ^^
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]