Skip to content

Commit 2c3b5e7

Browse files
committed
Fix some CI and use bootstrap 5 for pkgdown
1 parent fb672df commit 2c3b5e7

File tree

6 files changed

+11
-1
lines changed

6 files changed

+11
-1
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@
1010
^\.ccache$
1111
^\.github$
1212
.vscode
13+
^_pkgdown\.yml$
14+
^pkgdown$

.github/workflows/R-CMD-check.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
env:
2929
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
3030
R_KEEP_PKG_SOURCE: yes
31+
# prevent rgl issues because no X11 display is available
32+
RGL_USE_NULL: true
3133

3234
steps:
3335
- uses: actions/checkout@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,4 @@ waterways.shx
5555
inst/doc
5656
docs/
5757
.vscode
58+
docs

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,5 @@ ByteCompile: yes
9797
Encoding: UTF-8
9898
LazyData: TRUE
9999
RoxygenNote: 7.3.2
100+
Config/Needs/Website: hrbrmstr/albersusa
100101
SystemRequirements: GNU make

_pkgdown.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
url: https://r-spatial.github.io/mapview/
2+
template:
3+
bootstrap: 5
4+

vignettes/articles/mapview_07-pipe.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ vignette: >
1313

1414
```{r setup, echo=FALSE, message=FALSE}
1515
knitr::opts_chunk$set(fig.width = 8.83, message = FALSE, warning = FALSE)
16-
remotes::install_github("hrbrmstr/albersusa")
16+
# remotes::install_github("hrbrmstr/albersusa")
1717
```
1818

1919
**mapview** can be used in piped expressions using `%>%`, most likely at the very end of it...

0 commit comments

Comments
 (0)