-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (58 loc) · 2.08 KB
/
build.yml
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
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container: rocker/tidyverse:4.0.0-ubuntu18.04
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
apt-get update
apt-get install -y --no-install-recommends \
apt-utils \
libglpk-dev \
libcurl4-openssl-dev \
libxml2-dev \
libssl-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
- name: Install bieulergy
run: |
install.packages('devtools')
devtools::install('.', dependencies=TRUE)
shell: Rscript {0}
- name: Check
env:
_R_CHECK_CRAN_INCOMING_REMOTE_: false
run: rcmdcheck::rcmdcheck(args=c("--no-manual", "--no-build-vignettes"), build_args=c("--no-build-vignettes"), error_on="error", check_dir="check")
shell: Rscript {0}
# Push docker image to docker hub
#- uses: docker/build-push-action@v1
# with:
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKER_PASSWORD }}
# repository: montilab/bieulergy
# tag_with_ref: true
# tag_with_sha: true
# tags: latest
#- name: Install pkgdown and vignette dependencies
# run: |
# install.packages('pkgdown')
# install.packages('reactable')
# install.packages('biomaRt', repos=BiocManager::repositories())
# shell: Rscript {0}
#- name: Build pkgdown
# run: |
# PATH=$PATH:$HOME/bin/ Rscript -e 'pkgdown::build_site("."); file.copy("media", "docs", recursive=TRUE)'
# deploy needs rsync? Seems so.
#- name: Install deploy dependencies
# run: |
# apt-get update
# apt-get -y install rsync
#- name: Deploy 🚀
# uses: JamesIves/github-pages-deploy-action@releases/v3
# with:
# ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
# BRANCH: gh-pages # The branch the action should deploy to.
# FOLDER: docs # The folder the action should deploy.