forked from JGCRI/rfasst
-
Notifications
You must be signed in to change notification settings - Fork 3
91 lines (72 loc) · 2.49 KB
/
Copy pathdocs.yaml
File metadata and controls
91 lines (72 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: docs
on:
push:
branches:
- main
jobs:
R-CMD:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
- { os: ubuntu-latest, r: 'devel', cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
GITHUB_PAT: ${{ secrets.GH_PAT_RFASST}}
RSPM: ${{ matrix.config.rspm }}
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Pull Git LFS files
run: git lfs pull
- uses: r-lib/actions/setup-r@v2-branch
with:
r-version: '4.1'
lfs: true
- uses: r-lib/actions/setup-pandoc@v2-branch
- uses: r-lib/actions/setup-tinytex@v2-branch
- name: Install libraries
if: startsWith(matrix.config.os, 'ubuntu')
run: |
sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libssl-dev libxml2-dev libudunits2-dev libgdal-dev libgeos-dev libproj-dev libmagick++-dev libavfilter-dev
sudo apt-get install -y libharfbuzz-dev libfreetype6-dev libfribidi-dev libpng-dev pkg-config
- uses: r-lib/actions/setup-r@v2
- name: Install Git LFS
run: |
sudo apt-get update
sudo apt-get install git-lfs
git lfs install
- name: Install dependencies 1
run: |
install.packages(c("remotes", "rcmdcheck"), repos = "https://cloud.r-project.org")
shell: Rscript {0}
- name: Install dependencies 2
run: |
remotes::install_deps(dependencies = TRUE)
remotes::install_github("JGCRI/rmap")
shell: Rscript {0}
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::ragg
needs: ragg
- name: Install dependencies 3
run: |
install.packages("textshaping")
install.packages("pkgdown")
shell: Rscript {0}
- name: Install dependencies
run: |
install.packages("rrapply")
shell: Rscript {0}
- name: Install package
run: R CMD INSTALL .
- name: Deploy package
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)'