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 50a0613Copy full SHA for 50a0613
.github/workflows/run-evercran.yaml
@@ -21,6 +21,17 @@ 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 }}' ge '1.0.0' && \
27
+ dpkg --compare-versions '${{ inputs.rversion }}' le '1.2.3'; then
28
+ docker exec evercran sh - <<EOF
29
+ apt-get update
30
+ apt-get install -y gcc-2.95 g++-2.95 g77-2.95 libc-dev perl-modules libg2c0-dev make
31
+ EOF
32
+ fi
33
+ shell: bash
34
+
35
- name: Start tmate
36
uses: r-hub/action-tmate@master
37
with:
0 commit comments