Skip to content

Commit

Permalink
Install archive sys deps on mac and linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jimhester committed Jun 30, 2021
1 parent f7ca609 commit 81afde3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Expand Up @@ -84,6 +84,16 @@ jobs:
pak::pkg_system_requirements("rcmdcheck", execute = TRUE)
shell: Rscript {0}

- name: Install system dependencies-2
if: runner.os == 'Linux'
run: |
apt install -y libarchive-dev
- name: Install system dependencies-3
if: runner.os == 'macOS'
run: |
brew install libarchive
- name: Install dependencies
run: |
pak::local_install_dev_deps(upgrade = TRUE)
Expand Down
1 change: 1 addition & 0 deletions src/fixed_width_index_connection.cc
Expand Up @@ -10,6 +10,7 @@
#include <future> // std::async, std::future
#include <utility>


#ifdef VROOM_LOG
#include "spdlog/sinks/basic_file_sink.h" // support for basic file logging
#include "spdlog/spdlog.h"
Expand Down

0 comments on commit 81afde3

Please sign in to comment.