Travis CI cannot find packages in the pkg-config search path












1














I've recently started encountering the same errors on my various R packages updated after mid-December on Travis-CI (https://travis-ci.org/TGuillerme/). This is specially weird since for the three concerned packages, the changes were not any code change (only comments changes) but Travis-CI seems now not able to install some packages (namely magick and libgit2) using a pretty simple .yml file runing the package and codecov for coverage:



language: r
warnings_are_errors: false

branches:
only:
- master
- release
except:
- CRAN

# Code coverage
r_packages:
- covr

after_success:
- Rscript -e 'library(covr); codecov(token = "5f041826-63f1-47fa-b4a8-9a32633f47fa")'


The error I get in this case (although it varies with the different packages) is with the magick package:




** package ‘magick’ successfully unpacked and MD5 sums checked
Package Magick++ was not found in the pkg-config search path.
Perhaps you should add the directory containing `Magick++.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Magick++' found
Using PKG_CFLAGS=
Using PKG_LIBS=-lMagick++-6.Q16



line 2625-2631



Along with one suspicious message prior to this:




Unable to find the libgit2 library on this system. Building 'git2r'
using the bundled source of the libgit2 library.



line 1563-1564



Is there something obvious that I am missing? Is there a way to force Travis-CI to automatically install the the errored packages?



Again, this is specially weird to me since the running code changes committed do not differ since last build running without errors.










share|improve this question



























    1














    I've recently started encountering the same errors on my various R packages updated after mid-December on Travis-CI (https://travis-ci.org/TGuillerme/). This is specially weird since for the three concerned packages, the changes were not any code change (only comments changes) but Travis-CI seems now not able to install some packages (namely magick and libgit2) using a pretty simple .yml file runing the package and codecov for coverage:



    language: r
    warnings_are_errors: false

    branches:
    only:
    - master
    - release
    except:
    - CRAN

    # Code coverage
    r_packages:
    - covr

    after_success:
    - Rscript -e 'library(covr); codecov(token = "5f041826-63f1-47fa-b4a8-9a32633f47fa")'


    The error I get in this case (although it varies with the different packages) is with the magick package:




    ** package ‘magick’ successfully unpacked and MD5 sums checked
    Package Magick++ was not found in the pkg-config search path.
    Perhaps you should add the directory containing `Magick++.pc'
    to the PKG_CONFIG_PATH environment variable
    No package 'Magick++' found
    Using PKG_CFLAGS=
    Using PKG_LIBS=-lMagick++-6.Q16



    line 2625-2631



    Along with one suspicious message prior to this:




    Unable to find the libgit2 library on this system. Building 'git2r'
    using the bundled source of the libgit2 library.



    line 1563-1564



    Is there something obvious that I am missing? Is there a way to force Travis-CI to automatically install the the errored packages?



    Again, this is specially weird to me since the running code changes committed do not differ since last build running without errors.










    share|improve this question

























      1












      1








      1







      I've recently started encountering the same errors on my various R packages updated after mid-December on Travis-CI (https://travis-ci.org/TGuillerme/). This is specially weird since for the three concerned packages, the changes were not any code change (only comments changes) but Travis-CI seems now not able to install some packages (namely magick and libgit2) using a pretty simple .yml file runing the package and codecov for coverage:



      language: r
      warnings_are_errors: false

      branches:
      only:
      - master
      - release
      except:
      - CRAN

      # Code coverage
      r_packages:
      - covr

      after_success:
      - Rscript -e 'library(covr); codecov(token = "5f041826-63f1-47fa-b4a8-9a32633f47fa")'


      The error I get in this case (although it varies with the different packages) is with the magick package:




      ** package ‘magick’ successfully unpacked and MD5 sums checked
      Package Magick++ was not found in the pkg-config search path.
      Perhaps you should add the directory containing `Magick++.pc'
      to the PKG_CONFIG_PATH environment variable
      No package 'Magick++' found
      Using PKG_CFLAGS=
      Using PKG_LIBS=-lMagick++-6.Q16



      line 2625-2631



      Along with one suspicious message prior to this:




      Unable to find the libgit2 library on this system. Building 'git2r'
      using the bundled source of the libgit2 library.



      line 1563-1564



      Is there something obvious that I am missing? Is there a way to force Travis-CI to automatically install the the errored packages?



      Again, this is specially weird to me since the running code changes committed do not differ since last build running without errors.










      share|improve this question













      I've recently started encountering the same errors on my various R packages updated after mid-December on Travis-CI (https://travis-ci.org/TGuillerme/). This is specially weird since for the three concerned packages, the changes were not any code change (only comments changes) but Travis-CI seems now not able to install some packages (namely magick and libgit2) using a pretty simple .yml file runing the package and codecov for coverage:



      language: r
      warnings_are_errors: false

      branches:
      only:
      - master
      - release
      except:
      - CRAN

      # Code coverage
      r_packages:
      - covr

      after_success:
      - Rscript -e 'library(covr); codecov(token = "5f041826-63f1-47fa-b4a8-9a32633f47fa")'


      The error I get in this case (although it varies with the different packages) is with the magick package:




      ** package ‘magick’ successfully unpacked and MD5 sums checked
      Package Magick++ was not found in the pkg-config search path.
      Perhaps you should add the directory containing `Magick++.pc'
      to the PKG_CONFIG_PATH environment variable
      No package 'Magick++' found
      Using PKG_CFLAGS=
      Using PKG_LIBS=-lMagick++-6.Q16



      line 2625-2631



      Along with one suspicious message prior to this:




      Unable to find the libgit2 library on this system. Building 'git2r'
      using the bundled source of the libgit2 library.



      line 1563-1564



      Is there something obvious that I am missing? Is there a way to force Travis-CI to automatically install the the errored packages?



      Again, this is specially weird to me since the running code changes committed do not differ since last build running without errors.







      r travis-ci






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 3 hours ago









      Thomas Guillerme

      6761716




      6761716





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53942148%2ftravis-ci-cannot-find-packages-in-the-pkg-config-search-path%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53942148%2ftravis-ci-cannot-find-packages-in-the-pkg-config-search-path%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Monofisismo

          Angular Downloading a file using contenturl with Basic Authentication

          Olmecas