Update r-cmd-check.yml #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: R-CMD-check | |
on: [push, pull_request] | |
jobs: | |
check: | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- {os: ubuntu-latest, r: 'devel'} | |
- {os: ubuntu-latest, r: 'release'} | |
- {os: ubuntu-latest, r: 'oldrel'} | |
- {os: windows-latest, r: 'release'} | |
- {os: windows-latest, r: 'oldrel'} | |
- {os: macOS-latest, r: 'release'} | |
- {os: macOS-latest, r: 'release', arch: 'arm64'} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache LaTeX packages | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
/usr/local/texlive | |
~/Library/TinyTeX | |
~/AppData/Roaming/TinyTeX | |
key: ${{ runner.os }}-texlive-${{ hashFiles('**/DESCRIPTION') }} | |
restore-keys: ${{ runner.os }}-texlive- | |
- name: Install LaTeX packages if cache not found | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
sudo apt-get update -y | |
sudo apt-get install -y texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra | |
elif [ "$RUNNER_OS" == "Windows" ]; then | |
choco install miktex -y | |
echo "C:\Program Files\MiKTeX\miktex\bin\x64" | Out-File -Append -FilePath $Env:GITHUB_PATH | |
& "C:\Program Files\MiKTeX\miktex\bin\x64\initexmf.exe" --update-fndb | |
elif [ "$RUNNER_OS" == "macOS" ]; then | |
brew install --cask basictex || (curl -L -o basictex.pkg "https://de.mirrors.cicku.me/ctan/systems/mac/mactex/BasicTeX.pkg" && sudo installer -pkg basictex.pkg -target /) | |
echo "/Library/TeX/texbin" >> $GITHUB_PATH | |
sudo /Library/TeX/texbin/tlmgr update --self | |
sudo /Library/TeX/texbin/tlmgr install inconsolata | |
sudo /Library/TeX/texbin/tlmgr install collection-fontsrecommended | |
fi | |
- name: Set up R | |
uses: r-lib/actions/[email protected] | |
with: | |
r-version: ${{ matrix.config.r }} | |
- name: Install Linux system dependencies | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y libcurl4-openssl-dev libssl-dev libxml2-dev libudunits2-dev libgdal-dev libgeos-dev libproj-dev | |
sudo apt-get install -y libfreetype6-dev libpng-dev libtiff5-dev libjpeg-dev libfontconfig1-dev | |
sudo apt-get install -y libharfbuzz-dev libfribidi-dev | |
sudo apt-get install -y libcurl4-gnutls-dev default-jdk | |
sudo apt-get install -y libglpk-dev | |
sudo R CMD javareconf | |
sudo apt-get install -y texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra | |
- name: Install Windows system dependencies | |
if: runner.os == 'Windows' | |
run: | | |
choco install rtools -y | |
choco install miktex -y | |
echo "C:\Program Files\MiKTeX\miktex\bin\x64" | Out-File -Append -FilePath $Env:GITHUB_PATH | |
& "C:\Program Files\MiKTeX\miktex\bin\x64\initexmf.exe" --update-fndb | |
- name: Install macOS system dependencies | |
if: runner.os == 'macOS' | |
run: | | |
brew install --cask basictex || (curl -L -o basictex.pkg "https://de.mirrors.cicku.me/ctan/systems/mac/mactex/BasicTeX.pkg" && sudo installer -pkg basictex.pkg -target /) | |
echo "/Library/TeX/texbin" >> $GITHUB_PATH | |
sudo /Library/TeX/texbin/tlmgr update --self | |
sudo /Library/TeX/texbin/tlmgr install inconsolata | |
sudo /Library/TeX/texbin/tlmgr install collection-fontsrecommended | |
- name: Install rJava and other R dependencies | |
run: | | |
Rscript -e "install.packages('rJava')" | |
Rscript -e "install.packages('remotes')" | |
Rscript -e "remotes::install_cran(c('qdapTools', 'gender', 'openNLP', 'RCurl', 'venneuler', 'qdap', 'ggwordcloud', 'ragg', 'ggmap', 'openNLPdata', 'readr', 'tokenizers', 'anytime', 'mgsub', 'sylly', 'koRpus'))" | |
- name: Check | |
shell: bash | |
run: R CMD build . && R CMD check *tar.gz --as-cran |