Skip to content

Commit

Permalink
Add binaries for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Jun 9, 2021
1 parent 2f988be commit 615e606
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-standard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
matrix:
config:
- {os: windows-latest, r: 'release'}
#- {os: macOS-latest, r: 'release'}
- {os: macOS-latest, r: 'release'}
- {os: ubuntu-20.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: 'devel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}

Expand Down
7 changes: 7 additions & 0 deletions configure
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh
if [ `uname` = "Darwin" ] && [ ! -f "inst/bin/ctags" ]; then
mkdir -p inst/bin
curl -OLSs "https://autobrew.github.io/archive/high_sierra/universal-ctags-p5.9.20210530.0.tar.xz"
tar xf "universal-ctags-p5.9.20210530.0.tar.xz" --strip-components=1 -C inst/bin
unlink "universal-ctags-p5.9.20210530.0.tar.xz"
fi

0 comments on commit 615e606

Please sign in to comment.