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/*" |
Marc Kupietz | fbf254d | 2023-10-09 15:10:42 +0200 | [diff] [blame] | 20 | - "target/ids_files/*" |
Marc Kupietz | b80aa78 | 2023-10-08 23:33:26 +0200 | [diff] [blame] | 21 | |
| 22 | before_script: |
| 23 | - source `find .. -name section_helper.sh` |
| 24 | |
| 25 | - start_section install_linux_packages "Installing missing Linux packages" |
| 26 | - apt-get update |
Marc Kupietz | fbf254d | 2023-10-09 15:10:42 +0200 | [diff] [blame] | 27 | - apt-get install -y libvulkan1 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 |
| 28 | - wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb |
| 29 | - dpkg -i google-chrome-stable_current_amd64.deb || apt-get install -y -f |
Marc Kupietz | b80aa78 | 2023-10-08 23:33:26 +0200 | [diff] [blame] | 30 | - locale-gen de_DE.utf8 en_GB.utf8 en_US.utf8 |
Marc Kupietz | b80aa78 | 2023-10-08 23:33:26 +0200 | [diff] [blame] | 31 | - end_section install_linux_packages |
| 32 | |
Marc Kupietz | fbf254d | 2023-10-09 15:10:42 +0200 | [diff] [blame] | 33 | |
| 34 | - start_section install_fonts "Installing Libertinus and Fira fonts" |
| 35 | - wget -O- https://github.com/mozilla/Fira/archive/refs/tags/4.202.tar.gz | tar -C /usr/share/fonts -zx --wildcards "*.otf" |
| 36 | - fc-cache |
| 37 | - end_section install_fonts |
| 38 | |
Marc Kupietz | b80aa78 | 2023-10-08 23:33:26 +0200 | [diff] [blame] | 39 | - start_section install_r_packages "Installing missing R packages" |
Marc Kupietz | e8dc30b | 2023-10-09 12:16:30 +0200 | [diff] [blame] | 40 | - 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] | 41 | - 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] | 42 | - R -e 'devtools::install(".")' |
Marc Kupietz | b80aa78 | 2023-10-08 23:33:26 +0200 | [diff] [blame] | 43 | - end_section install_r_packages |
| 44 | |
| 45 | script: |
| 46 | - start_section render "Running scripts" |
| 47 | - R_CACHE_ROOTPATH=./cache R -e "require(rmarkdown); render('examples/ids.Rmd', output_format='revealjs::revealjs_presentation', output_dir='target')" |
Marc Kupietz | fbf254d | 2023-10-09 15:10:42 +0200 | [diff] [blame] | 48 | - ./ci/screenshot target/ids.html target/title.png |
| 49 | - ./ci/screenshot file://`pwd`/target/ids.html#/light-verb-constructions target/lvc.png |
| 50 | - ./ci/screenshot file://`pwd`/target/ids.html#/registered-users target/users.png |
| 51 | - ./ci/screenshot file://`pwd`/target/ids.html#/references target/references.png |
Marc Kupietz | b80aa78 | 2023-10-08 23:33:26 +0200 | [diff] [blame] | 52 | - end_section render |