Marc Kupietz | b80aa78 | 2023-10-08 23:33:26 +0200 | [diff] [blame] | 1 | # use the verse rocker image, as it contains tidyverse, devtools and some texlive |
| 2 | image: rocker/tidyverse |
| 3 | |
| 4 | # define stages of runner. at the moment, |
| 5 | # just build (no test or deploy). |
| 6 | stages: |
| 7 | - build |
| 8 | |
| 9 | build-job: |
| 10 | stage: build |
| 11 | |
| 12 | cache: |
| 13 | key: revealjs |
| 14 | paths: |
| 15 | - ./cache |
| 16 | |
| 17 | artifacts: |
| 18 | paths: |
| 19 | - "target/*" |
| 20 | |
| 21 | before_script: |
| 22 | - source `find .. -name section_helper.sh` |
| 23 | |
| 24 | - start_section install_linux_packages "Installing missing Linux packages" |
| 25 | - apt-get update |
Marc Kupietz | 61cddc1 | 2023-10-09 09:54:21 +0200 | [diff] [blame] | 26 | - apt-get install -y libu2f-udev fonts-liberation build-essential libglpk40 libcurl4-gnutls-dev libxml2-dev libsodium-dev libsecret-1-dev libfontconfig1-dev libssl-dev libxt6 libpq-dev imagemagick curl |
Marc Kupietz | b80aa78 | 2023-10-08 23:33:26 +0200 | [diff] [blame] | 27 | - locale-gen de_DE.utf8 en_GB.utf8 en_US.utf8 |
| 28 | |
| 29 | - end_section install_linux_packages |
| 30 | |
| 31 | - start_section install_r_packages "Installing missing R packages" |
Marc Kupietz | e8dc30b | 2023-10-09 12:16:30 +0200 | [diff] [blame] | 32 | - R -e "install.packages(c('devtools', 'RKorAPClient', 'httr', 'tidytext', 'httpuv', 'scales', 'sp', 'raster', 'kableExtra', 'DT', 'svglite', 'qrcode', 'rsvg', 'highcharter'))" |
Marc Kupietz | b80aa78 | 2023-10-08 23:33:26 +0200 | [diff] [blame] | 33 | - R -e 'devtools::install_git("https://korap.ids-mannheim.de/gerrit/IDS-Mannheim/idsThemeR")' |
Marc Kupietz | 2b548bc | 2023-10-09 07:21:59 +0200 | [diff] [blame] | 34 | - R -e 'devtools::install(".")' |
Marc Kupietz | 289f997 | 2023-10-09 09:49:12 +0200 | [diff] [blame] | 35 | - curl -O --output-dir /tmp/ https://gitlab.ids-mannheim.de/ICC/2023-07-20-ICC-ICLC10/-/raw/master/R/common.R |
Marc Kupietz | 8a15259 | 2023-10-09 12:32:16 +0200 | [diff] [blame^] | 36 | - cat /tmp/common.R |
| 37 | - R -e 'source("/tmp/common.R")' |
Marc Kupietz | b80aa78 | 2023-10-08 23:33:26 +0200 | [diff] [blame] | 38 | - end_section install_r_packages |
| 39 | |
| 40 | script: |
| 41 | - start_section render "Running scripts" |
| 42 | - R_CACHE_ROOTPATH=./cache R -e "require(rmarkdown); render('examples/ids.Rmd', output_format='revealjs::revealjs_presentation', output_dir='target')" |
| 43 | - end_section render |