From 1b8df0af64fecebb6a05191c4b7f6bf2457ee88b Mon Sep 17 00:00:00 2001 From: Isaiah Norton Date: Fri, 3 Jan 2025 10:22:52 -0500 Subject: [PATCH] Update nightly.yaml to use main branch --- .github/workflows/nightly.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index f9e5980462..adef1f0f25 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -24,7 +24,7 @@ jobs: run: R CMD build --no-build-vignettes --no-manual . - name: Install Package # running an install step gives better logging on standard out than R CMD check which tucks this away - run: R CMD INSTALL --configure-args="--with-download=https://github.com/TileDB-Inc/TileDB/archive/refs/heads/dev.zip" $(ls -1tr *.tar.gz | tail -1) + run: R CMD INSTALL --configure-args="--with-download=https://github.com/TileDB-Inc/TileDB/archive/refs/heads/main.zip" $(ls -1tr *.tar.gz | tail -1) - name: Run Tests # given that the package is installed and uses tinytest, we can easily run its tests run: Rscript -e 'tinytest::test_package("tiledb")'