Marc Kupietz | 810bc19 | 2024-01-25 15:07:51 +0100 | [diff] [blame] | 1 | .intstall-rkorapclient: |
Marc Kupietz | 3839007 | 2024-01-25 13:33:23 +0100 | [diff] [blame] | 2 | variables: |
| 3 | # Set `CCACHE_BASEDIR` and `CCACHE_DIR` to point `ccache` towards the cached |
| 4 | # path on the gitlab-runner. This enables to cache the output of `ccache` |
| 5 | # between various runs. |
| 6 | CCACHE_BASEDIR: ${CI_PROJECT_DIR} |
| 7 | CCACHE_DIR: ${CI_PROJECT_DIR}/ccache |
| 8 | # Set `ccache` to `content` to prevent rebuilding of the CI/CD containers to |
| 9 | # trigger a recreate of the cache. By using `content` the compiler's `mtime` |
| 10 | # is not considered as part of the hash. |
| 11 | CCACHE_COMPILERCHECK: "content" |
| 12 | # Enable caching for `apt-get`. |
| 13 | APT_CACHE_DIR: ${CI_PROJECT_DIR}/apt-cache |
| 14 | # Export `noninteractive` frontend to prevent requesting user input |
| 15 | DEBIAN_FRONTEND: noninteractive |
| 16 | R_LIBS_USER: ${CI_PROJECT_DIR}/rlib |
| 17 | |
| 18 | cache: |
| 19 | key: rkorapclient |
| 20 | paths: |
| 21 | - apt-cache/ |
| 22 | - ccache/ |
| 23 | - rlib/ |
| 24 | |
Marc Kupietz | 3839007 | 2024-01-25 13:33:23 +0100 | [diff] [blame] | 25 | before_script: |
| 26 | - source `find .. -name section_helper.sh` |
| 27 | |
| 28 | - start_section install_linux_packages "Installing missing Linux packages" |
| 29 | - mkdir -pv $APT_CACHE_DIR ccache $R_LIBS_USER /usr/local/sbin ~/.ccache ~/.R |
| 30 | - cp ci/Makevars ~/.R/Makevars |
| 31 | - cp ci/ccache.conf ${CI_PROJECT_DIR}/ccache/ccache.conf |
| 32 | - cp ci/ccache.conf ~/.ccache/ccache.conf |
| 33 | - echo "R_LIBS='$R_LIBS_USER'" > .Renviron |
| 34 | - echo "MAKEFLAGS=-j$(nproc)" >> ~/.R/Makevars |
| 35 | - echo "MAKE=make -j$(nproc)" >> ~/.R/Makevars |
| 36 | - apt-get update |
| 37 | - apt-get install -y -o dir::cache::archives="$APT_CACHE_DIR" --no-install-recommends software-properties-common dirmngr ccache wget |
| 38 | - wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc |
| 39 | - add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/" |
| 40 | # - add-apt-repository ppa:c2d4u.team/c2d4u4.0+ |
| 41 | - grep "sudo apt install" Readme.md | sed -e 's/.*sudo apt install/apt-get install --no-install-recommends -o dir::cache::archives="$APT_CACHE_DIR" -y /g' | sh |
| 42 | - ln -s $(which ccache) /usr/local/sbin/gcc |
| 43 | - ln -s $(which ccache) /usr/local/sbin/g++ |
| 44 | - end_section install_linux_packages |
| 45 | |
| 46 | script: |
| 47 | - start_section installing "Installing RKorAPClient from CRAN" |
| 48 | - export PATH=/usr/local/sbin:$PATH |
| 49 | - R -q -e "install.packages(c('remotes', 'RKorAPClient'), dependencies = TRUE)" |
| 50 | - R -q -e "update.packages(ask = FALSE)" |
| 51 | - end_section installing |
| 52 | - start_section linstalling "Installing RKorAPClient from source" |
| 53 | - R -q -e 'remotes::install_local(force = TRUE, dependencies = TRUE)' |
| 54 | - ccache -s |
| 55 | - end_section linstalling |
Marc Kupietz | 810bc19 | 2024-01-25 15:07:51 +0100 | [diff] [blame] | 56 | |
| 57 | build-rkorapclient-on-stable: |
| 58 | extends: .intstall-rkorapclient |
| 59 | image: ubuntu:latest |
| 60 | cache: |
| 61 | key: rkorapclient-ubuntu-stable |
| 62 | paths: |
| 63 | - apt-cache/ |
| 64 | - ccache/ |
| 65 | - rlib/ |
| 66 | |
| 67 | |
| 68 | build-rkorapclient-on-rolling: |
| 69 | extends: .intstall-rkorapclient |
| 70 | image: ubuntu:rolling |
| 71 | |