Skip to content

Commit

Permalink
Merge pull request #9412 from Tmonster/duckdb-r-patches
Browse files Browse the repository at this point in the history
update R CMD workflow to apply patches in .github/patches/duckdb-r
  • Loading branch information
Mytherin committed Oct 20, 2023
2 parents 39820ba + f2f91a7 commit c0db850
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/R_CMD_CHECK.yml
Expand Up @@ -79,6 +79,15 @@ jobs:
extra-packages: any::rcmdcheck
needs: check

- name: Apply duckdb-r patches
shell: bash
working-directory: ${{ env.DUCKDB_SRC }}
run: |
shopt -s nullglob
for filename in .github/patches/duckdb-r/*.patch; do
git apply $filename
done
# needed so we can run git commit in vendor.sh
- name: setup github and create parallel builds
shell: bash
Expand Down

0 comments on commit c0db850

Please sign in to comment.