Skip to content

Commit

Permalink
Use ubuntu 20.04 - latest blocked by rdotnet/dynamic-interop-dll#8
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewIOM committed Apr 9, 2024
1 parent 72be84d commit d4eb015
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
os: [ macos-latest, ubuntu-20.04, windows-latest ]

steps:
- uses: actions/checkout@master
- name: Setup R - Ubuntu
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-20.04'
run: |
sudo apt update -qq
sudo apt install --no-install-recommends software-properties-common dirmngr
Expand All @@ -26,7 +26,7 @@ jobs:
sudo apt install --no-install-recommends r-base
- uses: r-lib/actions/setup-r@v1
name: Setup R - Windows / macOS
if: matrix.os != 'ubuntu-latest'
if: matrix.os != 'ubuntu-20.04'
with:
r-version: '4.0.2'
- name: Set R environment variables
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
os: [ ubuntu-20.04, windows-latest, macos-latest ]

steps:
- uses: actions/checkout@master
- name: Setup R - Ubuntu
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-20.04'
run: |
sudo apt update -qq
sudo apt install --no-install-recommends software-properties-common dirmngr
Expand All @@ -25,7 +25,7 @@ jobs:
sudo apt install --no-install-recommends r-base
- uses: r-lib/actions/setup-r@v1
name: Setup R - Windows / macOS
if: matrix.os != 'ubuntu-latest'
if: matrix.os != 'ubuntu-20.04'
with:
r-version: '4.0.2'
- name: Set R environment variables
Expand Down

0 comments on commit d4eb015

Please sign in to comment.