cells2numbers / migrationminer

MigrationmineR is a R package to analyse and profile in vitro cell tracking and migration data. It is belongs to the cytominer-verse used for morphological profiling and allows to create temporal or dynamic profiles.
Other
5 stars 0 forks source link

Travis fails with missing libgit2 #16

Closed cells2numbers closed 5 years ago

cells2numbers commented 5 years ago

Libgit2 is missing on the build system,

adding libgit2 as a binary package as suggested here does not solve the issue:

https://stackoverflow.com/questions/53942148/travis-ci-cannot-find-packages-in-the-pkg-config-search-path

cells2numbers commented 5 years ago

The travis build error related to git could be solved by installing the libgit2-dev apt package, see

addons:
  apt:
    packages:
      - libgit2-dev

A new error related to devtools is thrown, see https://github.com/r-lib/devtools/issues/1965.

cells2numbers commented 5 years ago

Travis error is linked to devtools 2.0.0 or 2.0.1. install_github works with devtools version 1.9.1

cells2numbers commented 5 years ago

Error solved with #23