Skip to content

Commit

Permalink
Dockerize the tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
jorainer committed Sep 1, 2023
1 parent baed98e commit 53eb0d2
Show file tree
Hide file tree
Showing 5 changed files with 127 additions and 303 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/build_deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: pkgdown

on:
repository_dispatch:
types: [trigger-workflow-2]

jobs:
build-and-deploy:
runs-on: ubuntu-latest
container: jorainer/xcms_tutorials:latest
steps:
## Most of these steps are the same as the ones in
## https://github.com/r-lib/actions/blob/master/examples/check-standard.yaml
## If they update their steps, we will also need to update ours.
- uses: actions/checkout@v2

- name: Query dependencies
run: |
install.packages('remotes')
# saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
shell: Rscript {0}

- name: Install rcmdcheck
run: |
install.packages('rcmdcheck')
shell: Rscript {0}

- name: Check
env:
_R_CHECK_CRAN_INCOMING_REMOTE_: false
run: |
service mariadb start
Rscript -e "rcmdcheck::rcmdcheck(args = c('--no-manual'), error_on = 'error', check_dir = 'check')"
shell: bash {0}

- name: Install deploy dependencies
run: |
apt-get update
apt-get -y install rsync
- name: Install pkgdown
if: github.ref == 'refs/heads/main'
run: |
install.packages('pkgdown')
shell: Rscript {0}

- name: Install package
if: github.ref == 'refs/heads/main'
run: R CMD INSTALL .

- name: Deploy package
if: github.ref == 'refs/heads/main'
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
git config --global --add safe.directory /__w/xcmsTutorials/xcmsTutorials
service mariadb start
Rscript -e "pkgdown::deploy_to_branch(new_process = FALSE)"
shell: bash {0}
## Note that you need to run pkgdown::deploy_to_branch(new_process = FALSE)
## at least one locally before this will work. This creates the gh-pages
## branch (erasing anything you haven't version controlled!) and
## makes the git history recognizable by pkgdown.
303 changes: 0 additions & 303 deletions .github/workflows/check-bioc.yml

This file was deleted.

Loading

0 comments on commit 53eb0d2

Please sign in to comment.