Skip to content

Commit

Permalink
chore: Adapt to changed duckdb directory
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Oct 29, 2023
1 parent f0b7dd1 commit dbb0dc7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions revdep-dev/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ all: test
TESTTHAT_REPORTER ?= testthat::ProgressReporter\$$new(max_failures = Inf, update_interval = Inf)

# The REVDEP definition also decides what is run on GitHub Actions in backends.yaml
REVDEP := RMariaDB RSQLite RPostgres RKazam duckdb odbc-SQLServer odbc-MySQL odbc-PostgreSQL odbc-SQLite
REVDEP := RMariaDB RSQLite RPostgres RKazam duckdb-r odbc-SQLServer odbc-MySQL odbc-PostgreSQL odbc-SQLite
TEST_TARGETS := $(patsubst %,test-%,${REVDEP})

LIB_DIR := $(shell Rscript -e "cat(.libPaths()[1])")
Expand All @@ -18,10 +18,9 @@ RKazam RSQLite RPostgres RMySQL RMariaDB odbc:
odbc-%: odbc
@true

duckdb:
# Use local checkout if available, otherwise clone from cwida GitHub
if [ -d ../../../$@ ]; then ln -s $$(realpath ../../../$@/tools/rpkg) $@; else git clone https://github.com/duckdb/$@.git duckdb-core; ln -s duckdb-core/tools/rpkg $@; fi
ls -l
duckdb-r:
# Use local checkout if available, otherwise clone from duckdb GitHub
if [ -d ../../$@ ]; then ln -s $$(realpath ../../$@) $@; else git clone https://github.com/duckdb/$@.git; fi
head $@/DESCRIPTION

bigrquery:
Expand Down

0 comments on commit dbb0dc7

Please sign in to comment.