We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a843467 commit 1735ca9Copy full SHA for 1735ca9
.github/workflows/run-evercran.yaml
@@ -21,6 +21,16 @@ jobs:
21
docker run --rm -d --name evercran ghcr.io/r-hub/evercran/${{ inputs.rversion }} sleep 1d
22
shell: bash
23
24
+ - name: Install compilers
25
+ run: |
26
+ if dpkg --compare-versions '${{ inputs.rversion }}' le '1.2.3'; then
27
+ docker exec -i evercran sh - <<EOF
28
+ apt-get update
29
+ apt-get install -y gcc-2.95 g++-2.95 g77-2.95 libc-dev perl-modules libg2c0-dev make
30
+ EOF
31
+ fi
32
+ shell: bash
33
+
34
- name: Start tmate
35
uses: r-hub/action-tmate@master
36
with:
0 commit comments