extendr / rextendr

An R package that helps scaffolding extendr-enabled packages or compiling Rust code dynamically
https://extendr.github.io/rextendr/
Other
184 stars 27 forks source link

Github pages is outdated / not updated #37

Closed Ilia-Kosenkov closed 3 years ago

Ilia-Kosenkov commented 3 years ago

I am not familiar with how this website is built, but I noticed that the home page (https://extendr.github.io/rextendr/index.html) displays incorrect results, in particular, the last chunk:

rprintln!("Hello from Rust!");

let x = 5;
let y = 7;
let z = x*y;

z
#> NULL

Vignettes are built correctly though.

clauswilke commented 3 years ago

Thanks. The README.Rmd file needs to be reknitted, and then the website rebuilt with pkgdown::build_site(). Looks like I forgot to reknit.

Ilia-Kosenkov commented 3 years ago

@clauswilke, Could you do that? I was afraid one of my changes broke knitr integration. Is there a way to automate pkgdown rebuilds?

malcolmbarrett commented 3 years ago

Would a PR to automate the pkgdown site on GHA be helpful? I'd be happy to do so

clauswilke commented 3 years ago

@malcolmbarrett Yes, I think that would be helpful.

clauswilke commented 3 years ago

I just fixed the README: https://github.com/extendr/rextendr/blob/main/README.md I haven't fixed the website yet.