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 268a55f commit 055d8f0Copy full SHA for 055d8f0
.github/workflows/tic.yml
@@ -84,9 +84,13 @@ jobs:
84
Rscript -e "if (!requireNamespace('remotes')) install.packages('remotes', type = 'source')"
85
Rscript -e "if (getRversion() < '3.2' && !requireNamespace('curl')) install.packages('curl', type = 'source')"
86
87
- - name: "[Stage] [Linux] Install curl"
+ - name: "[Stage] [Linux] Install curl and libgit2"
88
if: runner.os == 'Linux'
89
- run: sudo apt install libcurl4-openssl-dev
+ run: sudo apt install libcurl4-openssl-dev libgit2-dev
90
+
91
+ - name: "[Stage] [macOS] Install libgit2"
92
+ if: runner.os == 'macOS'
93
+ run: brew install libgit2
94
95
- name: "[Stage] Install"
96
if: matrix.config.os != 'macOS-latest' || matrix.config.r != 'devel'
0 commit comments