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

Failed to download commit data: API request failed with status code: 404. #458

Closed
artur-sannikov opened this issue Mar 25, 2025 · 3 comments

Comments

@artur-sannikov
Copy link

When I generate this environment, I get

ailed to get closest commit for github::microbiome/miaTime: Failed to download commit data: API request failed with status code: 404.
Falling back to <<< HEAD >>>

Error: Request `curl::curl_fetch_disk()` failed:
HTTP response code said error [github.com]: The requested URL returned error: 404
If it's a GitHub repo, check the url and commit.
Are these correct? If it's an archived CRAN package, check the name
of the package and the version number.
Failing repo: https://github.com/github::microbiome/miaTime/archive/HEAD.tar.gz
Execution halted

Indeed, here, we have

Remotes:
    github::microbiome/miaTime

I think rix should substitute github:: to https://github.com/.

# generate_env.R
library(rix)

path_default_nix <- "."

r_packages <- c(
    "rmarkdown",
    "dplyr",
    "ggplot2",
    "purrr",
    "stringr",
    "janitor",
    "tidyr",
    "testthat"
)

git_pkgs <- list(
    list(
        package_name = "mia",
        repo_url = "https://github.com/microbiome/mia",
        commit = "3b6ce6bf07a54635e7241daf4fcb3b65bf19a964"
    ),
    list(
        package_name = "miaViz",
        repo_url = "https://github.com/microbiome/miaViz",
        commit = "fdb4ded0dbb36aead1be2d5e60b626c9f0c94ae8"
    )
)

rix(
    r_ver = "c9217c0c9b774778ca839ef0e958b8c4e898e7f7", # Change to whatever R version you need
    r_pkgs = r_packages, # Change to whatever packages you need
    system_pkgs = c("quarto", "pandoc"),
    git_pkgs = git_pkgs,
    ide = "codium",
    project_path = path_default_nix,
    overwrite = TRUE,
    print = TRUE
)
@artur-sannikov
Copy link
Author

If I change it from github::microbiome/miaTime to microbiome/miaTime, it works. See my fork.

@b-rodrigues
Copy link
Contributor

thanks for reporting, fixed with the latest dev version. Run a temporary shell with the dev version using:

nix-shell --expr "$(curl -sl https://raw.githubusercontent.com/ropensci/rix/main/inst/extdata/default.nix)"

and try to build default.nix.

@artur-sannikov
Copy link
Author

Thanks, just tested. Works fine!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants