| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| name: test-r |
| |
| on: |
| push: |
| branches: |
| - main |
| pull_request: |
| branches: |
| - main |
| paths: |
| - '.github/workflows/r-check.yaml' |
| - 'src/nanoarrow/**' |
| - 'r/**' |
| |
| jobs: |
| |
| R-CMD-check: |
| runs-on: ${{ matrix.config.os }} |
| name: ${{ matrix.config.os }} (${{ matrix.config.r }}) |
| |
| strategy: |
| fail-fast: false |
| matrix: |
| config: |
| - {os: macOS-latest, r: 'release'} |
| - {os: windows-latest, r: '3.6'} |
| - {os: windows-latest, r: 'release'} |
| - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} |
| - {os: ubuntu-latest, r: 'release'} |
| - {os: ubuntu-latest, r: 'oldrel-1'} |
| |
| env: |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} |
| R_KEEP_PKG_SOURCE: yes |
| |
| steps: |
| - uses: actions/checkout@v4 |
| |
| - uses: r-lib/actions/setup-pandoc@v2 |
| - uses: r-lib/actions/setup-r@v2 |
| with: |
| r-version: ${{ matrix.config.r }} |
| http-user-agent: ${{ matrix.config.http-user-agent }} |
| use-public-rspm: true |
| |
| # Check package install with extra warning flags except on Windows, |
| # where the R headers cause some problems |
| - name: Check R CMD INSTALL |
| if: matrix.config.os != 'windows-latest' |
| env: |
| PKG_CPPFLAGS: "-DNANOARROW_DEBUG" |
| PKG_CFLAGS: "-Werror -Wall -Wextra -Wpedantic -Wconversion -Wno-unused-parameter -Wno-sign-conversion -Wno-cast-function-type -Wno-misleading-indentation -Wno-conversion -Wno-unused-const-variable" |
| run: | |
| R CMD INSTALL r --preclean |
| shell: bash |
| |
| - uses: r-lib/actions/setup-r-dependencies@v2 |
| with: |
| extra-packages: any::rcmdcheck, arrow=?ignore-before-r=4.0.0 |
| needs: check |
| working-directory: r |
| |
| - uses: r-lib/actions/check-r-package@v2 |
| env: |
| ARROW_R_VERBOSE_TEST: "true" |
| _R_CHECK_FORCE_SUGGESTS_: false |
| with: |
| upload-snapshots: true |
| working-directory: r |