Skip to content

Commit

Permalink
Fix nightly build by updating branch name from "dev" to "main" (#797)
Browse files Browse the repository at this point in the history
* Fix nightly build by updating branch name from "dev" to "main"

* Update a few more instances of TileDB "dev" branch in source files
  • Loading branch information
jdblischak authored Jan 8, 2025
1 parent bec1903 commit e952a9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tools/ci/valgrind/buildTileDB.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ echo "::group::Setup sources"
if [ ${isrelease} -eq 0 ]; then
git clone --single-branch --branch ${version} https://github.com/TileDB-Inc/TileDB.git TileDB-${version}
git log --graph --pretty=format:'%h - %d %s (%cr) <%an>' --abbrev-commit | head
elif [ ${version} = "dev" ]; then
elif [ ${version} = "main" ]; then
wget https://github.com/TileDB-Inc/TileDB/archive/refs/heads/${version}.zip
unzip ${version}.zip
rm ${version}.zip
Expand Down
4 changes: 2 additions & 2 deletions tools/fetchTileDBSrc.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ if (!file.exists("tiledb.tar.gz")) {
cat("Converting zip to tar.gz ...\n")
unzip("tiledb.tar.gz")
unlink("tiledb.tar.gz")
Sys.chmod("TileDB-dev/bootstrap", mode="0755")
Sys.chmod("TileDB-main/bootstrap", mode="0755")
options(warn=-1)
tar("tiledb.tar.gz", "TileDB-dev", compression="gzip")
tar("tiledb.tar.gz", "TileDB-main", compression="gzip")
}

options(op)
Expand Down
2 changes: 1 addition & 1 deletion vignettes/introduction.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ column *reduces to a vector* as this happens at the R side:

Basic reading returns the coordinates and any attributes. The following
examples use the array created by the
[quickstart_sparse](https://github.com/TileDB-Inc/TileDB/blob/dev/examples/cpp_api/quickstart_sparse.cc)
[quickstart_sparse](https://github.com/TileDB-Inc/TileDB/blob/main/examples/cpp_api/quickstart_sparse.cc)
example.

``` r
Expand Down

0 comments on commit e952a9b

Please sign in to comment.