8000 Modernise build process and tooling by AndrewIOM · Pull Request #159 · rdotnet/rdotnet · GitHub
[go: up one dir, main page]

Skip to content

Modernise build process and tooling #159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use R 4.0.2
  • Loading branch information
AndrewIOM committed Apr 9, 2024
commit 7a0143864c0749e6acae4927b4238ebbfbb4c6ff
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | sudo tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc
sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
sudo apt install --no-install-recommends r-base
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-r@v1
name: Setup R - Windows / macOS
if: matrix.os != 'ubuntu-20.04'
with:
r-version: '4.3.3'
r-version: '4.0.2'
- name: Set R environment variables
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | sudo tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc
sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
sudo apt install --no-install-recommends r-base
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-r@v1
name: Setup R - Windows / macOS
if: matrix.os != 'ubuntu-20.04'
with:
r-version: '4.3.3'
r-version: '4.0.2'
- name: Set R environment variables
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
Expand All @@ -38,7 +38,7 @@ jobs:
echo "R_HOME=$(R RHOME)" >> "$GITHUB_ENV"
elif [ "$RUNNER_OS" == "Windows" ]; then
echo "R_HOME=$(R RHOME)" >> "$GITHUB_ENV"
echo "C:\R\R-4.3.3\bin\x64" >> $GITHUB_PATH
echo "C:\R\R-4.0.2\bin\x64" >> $GITHUB_PATH
else
echo "$RUNNER_OS not supported"
exit 1
Expand Down
0