Martin R. Smith

Results 19 comments of Martin R. Smith

I encountered this for the first time when launching a teletype session – teletype having previously been disabled and wordcount working happily. Could it be an issue with how wordcount...

@cpsievert I tried dropping `fontawesome::fa()` in place of `icon()` into ```r actionButton("go", "Search", icon = fontawesome::fa("magnifying-glass")) ``` but I see ``` Error in validateIcon(icon) : Invalid icon. Use Shiny's 'icon()'...

If it helps diagnose, I've encountered the same problem in a package that I'm writing. I believe that the error arises when trying to calloc an array of a size...

Thanks, I'd been able to simply remove the `Remotes:` field (as the necessary version of TreeTools is now on CRAN). However, I still encounter the `simpleError in done[[i]]:` error message,...

Putting it after `setup-r-dependencies@v2` is no good, as the error occurs within the `setup-r-dependencies@v2` step, so the run fails before it can reach subsequent blocks.

After removing the `Remotes:` field, and removing `ms609/TreeDistData` from the package's `Suggests` field, and later installing it manually, the workflow completes successfully. Not sure whether I've followed the thread –...

Thanks for the suggestion; however, I [still see the error](https://github.com/ms609/TreeTools/runs/5330284540?check_suite_focus=true ) in the `setup-r-dependencies@v1` step. ``` Error in dyn.load(dll_file) : unable to load shared object '/tmp/RtmpldVcb7/file18c1d8a9878/glue/libs//glue.so': libR.so: cannot open shared...

Thanks, I [added a step](https://github.com/ms609/TreeTools/blob/master/.github/workflows/rchk.yml) ```yml - name: Install `pak` from source run: | install.packages("pak", repos = "https://cran.rstudio.com/") shell: Rscript {0} ``` which installs `pak` successfully, but `r-lib/actions/setup-r-dependencies@v1` still attempts...

Thanks – your update fix seems to have rchk up and running on the github action! Thanks for your help with this.

Here we go: [Commit](https://github.com/ms609/TreeDist/pull/63/commits/b44888660caf1348ab2fa38eed95973307b597cb#diff-995ad8fffd686c49adc97219d0308360a5465fb5b8910b78bc521ad07a17d9f4) [Workflow file](https://github.com/ms609/TreeDist/blob/b44888660caf1348ab2fa38eed95973307b597cb/.github/workflows/R-CMD-check.yml) [DESCRIPTION file](https://github.com/ms609/TreeDist/blob/b44888660caf1348ab2fa38eed95973307b597cb/DESCRIPTION) [Build log](https://github.com/ms609/TreeDist/runs/3337764099)