Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix nightly build by updating branch name from "dev" to "main" #797

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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