Skip to content

Commit

Permalink
Use latest runner and R-release binary.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-u authored Oct 31, 2023
1 parent c518e98 commit ae23ffc
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@ name: Build

jobs:
Build:
runs-on: 'macOS-10.15'
runs-on: 'macOS-latest'

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Build
shell: bash
run: |
echo Downloading R ...
curl -s -LO https://mac.r-project.org/high-sierra/R-4.0-branch/x86_64/R-4.0-branch.tar.gz
curl -s -LO https://mac.r-project.org/big-sur/last-success/R-release-x86_64.tar.xz
echo Unpacking R ...
sudo rm -rf /Library/Frameworks/R.framework
sudo tar fxz R-4.0-branch.tar.gz -C /
if [ ! -e /Library/Frameworks ]; then mkdir -p /Library/Frameworks; fi
sudo tar fxz R-release-x86_64.tar.xz -C /Library/Frameworks/
mkdir -p build/logs
for bld in Release Debug; do
echo Build $bld ..
Expand Down

0 comments on commit ae23ffc

Please sign in to comment.