travis-ci

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No “exports” main resolved in /app/node_modules/@babel/helper-compilation-targets/package.json

那年仲夏 提交于 2020-08-06 16:54:41
问题 I'm having trouble building my nuxt images in a travis CI pipeline. My local environment is ubuntu 18.04 - docker version 19.03.11 docker-compose version 1.24.1 I'm able to build and run my images locally but on the travis CI I get the following error Step 5/7 : RUN npm run build ---> Running in d3e9433b79f0 > nuxt_app@1.0.0 build /app > nuxt build ℹ Production build ✔ Builder initialized ✔ Nuxt files generated ℹ Compiling Client ℹ Starting type checking service... ℹ Using 1 worker with

GraalVM with native-image compilation in Travis CI

江枫思渺然 提交于 2020-06-28 04:23:35
问题 I have Java project which I compile with GraalVM native-image to executable binary. I'd like to configure continuous integration process for the project with Travis CI and it's ineresting to me - does Travis CI allow that? How can I configure .travis.yml file for building with GraalVM native-image? 回答1: I was able to configure native-image GraalVM compilation in Travis CI builds using install-jdk.sh from Bach.java - Java Shell Builder. Here is .travis-ci.yml : sudo: false language: java cache

GraalVM with native-image compilation in Travis CI

◇◆丶佛笑我妖孽 提交于 2020-06-28 04:23:08
问题 I have Java project which I compile with GraalVM native-image to executable binary. I'd like to configure continuous integration process for the project with Travis CI and it's ineresting to me - does Travis CI allow that? How can I configure .travis.yml file for building with GraalVM native-image? 回答1: I was able to configure native-image GraalVM compilation in Travis CI builds using install-jdk.sh from Bach.java - Java Shell Builder. Here is .travis-ci.yml : sudo: false language: java cache

R package build failing on Unix machines due to missing GSL - GNU Scientific Library

 ̄綄美尐妖づ 提交于 2020-06-24 09:14:32
问题 I am facing a particularly vexing problem with R package development. My own package, called ggstatsplot (https://github.com/IndrajeetPatil/ggstatsplot), depends on userfriendlyscience , which depends on another package called MBESS , which itself ultimately depends on another package called gsl . There is no problem at all for installation of ggstatsplot on a Windows machine (as assessed by AppVeyor continuous integration platform: https://ci.appveyor.com/project/IndrajeetPatil/ggstatsplot).