Skip to content

Commit

Permalink
update tic templates
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Dec 12, 2020
1 parent b0ce324 commit 10bd79b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/tic.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## tic GitHub Actions template: linux-macos-windows-deploy
## revision date: 2020-11-14
## revision date: 2020-12-11
on:
workflow_dispatch:
push:
Expand Down Expand Up @@ -82,9 +82,13 @@ jobs:
Rscript -e "if (!requireNamespace('remotes')) install.packages('remotes', type = 'source')"
Rscript -e "if (getRversion() < '3.2' && !requireNamespace('curl')) install.packages('curl', type = 'source')"
- name: "[Stage] [Linux] Install curl"
- name: "[Stage] [Linux] Install curl and libgit2"
if: runner.os == 'Linux'
run: sudo apt install libcurl4-openssl-dev
run: sudo apt install libcurl4-openssl-dev libgit2-dev

- name: "[Stage] [macOS] Install libgit2"
if: runner.os == 'macOS'
run: brew install libgit2

- name: "[Stage] [macOS] Install system libs for pkgdown"
if: runner.os == 'macOS' && matrix.config.pkgdown != ''
Expand Down

0 comments on commit 10bd79b

Please sign in to comment.