feat!: bump rust-polars to 0.33 #1443
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
name: R-CMD-check | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
RPOLARS_CARGO_CLEAN_DEPS: "true" | |
jobs: | |
R-CMD-check: | |
runs-on: ${{ matrix.config.os }} | |
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) ${{ matrix.config.full-features && 'full-features' || '' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { os: macos-latest, r: "release" } | |
- { os: windows-latest, r: "devel", rtools-version: "43" } | |
- { os: windows-latest, r: "release", rtools-version: "" } | |
- { os: ubuntu-latest, r: "devel", http-user-agent: "release" } | |
- { os: ubuntu-latest, r: "release" } | |
- { os: ubuntu-latest, r: "oldrel-1" } | |
include: | |
- config: { os: macos-latest, r: "release", full-features: true } | |
- config: { os: windows-latest, r: "release", full-features: true } | |
- config: { os: ubuntu-latest, r: "release", full-features: true } | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Tune GitHub-hosted runner network | |
uses: smorimoto/tune-github-hosted-runner-network@v1 | |
- name: Set env vars for build option | |
if: matrix.config.full-features | |
shell: bash | |
run: | | |
echo "RPOLARS_FULL_FEATURES=true" >>$GITHUB_ENV | |
echo "RPOLARS_PROFILE=release" >>$GITHUB_ENV | |
- uses: ./.github/actions/setup | |
with: | |
rust-nightly: "${{ matrix.config.full-features }}" | |
- name: print files | |
run: print(list.files("..",recursive = TRUE,full.names=TRUE)) | |
shell: Rscript {0} | |
- 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 | |
rtools-version: ${{ matrix.config.rtools-version }} | |
Ncpus: 2 | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: any::rcmdcheck | |
needs: check | |
pak-version: devel | |
env: | |
CI: false | |
- name: find polars rust source/cache, used by Makevars in check step | |
id: get_the_rust_sauce | |
shell: bash | |
run: | | |
echo "RPOLARS_RUST_SOURCE=${PWD}/src/rust" >> $GITHUB_ENV | |
- uses: r-lib/actions/check-r-package@v2 | |
with: | |
upload-snapshots: false | |
error-on: '"never"' #errors are filtered by rules below | |
# - name: print R CMD check - install log | |
# shell: bash | |
# env: | |
# RUNNER_OS: ${{ runner.os }} | |
# run: | | |
# echo $RUNNER_OS | |
# if [ "$RUNNER_OS" == "Linux" ] | |
# then | |
# less /home/runner/work/r-polars/r-polars/check/polars.Rcheck/00install.out | |
# fi | |
# | |
# if [ "$RUNNER_OS" == "Windows" ] | |
# then | |
# less D:/a/r-polars/r-polars/check/polars.Rcheck/00install.out | |
# fi | |
# | |
# if [ "$RUNNER_OS" == "macOS" ] | |
# then | |
# less /home/runner/work/r-polars/r-polars/check/polars.Rcheck/00install.out | |
# fi | |
- name: print files | |
run: print(list.files("..",recursive = TRUE,full.names=TRUE)) | |
shell: Rscript {0} | |
- name: raise remaining rcmdcheck errors | |
run: | | |
print(getwd()); | |
source("./inst/misc/filter_rcmdcheck.R"); | |
shell: Rscript {0} |