Skip to content

Commit

Permalink
Compiler install on newer R
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Nov 17, 2024
1 parent 1735ca9 commit 6b5b927
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/run-evercran.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ jobs:
apt-get update
apt-get install -y gcc-2.95 g++-2.95 g77-2.95 libc-dev perl-modules libg2c0-dev make
EOF
elif dpkg --compare-versions '${{ inputs.rversion }}' lt '2.9.0'; then
docker exec -i evercran sh - <<EOF
apt-get update
apt-get install -y gcc g++ g77 libc-dev perl-modules libg2c0-dev make
EOF
elif dpkg --compare-versions '${{ inputs.rversion }}' lt '3.0.0'; then
docker exec -i evercran sh - <<EOF
apt-get update
apt-get install -y gcc g++ gfortran libc-dev make
EOF
fi
shell: bash

Expand Down

0 comments on commit 6b5b927

Please sign in to comment.