From 6feb0015a424b4a4242b98358d09c6147d641a02 Mon Sep 17 00:00:00 2001 From: serut Date: Fri, 8 Oct 2021 20:14:32 +0200 Subject: [PATCH 1/7] feat(travis) wip update travis build --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e155174..b14c0c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ addons: chrome: stable node_js: - - "8.9.1" + - "14" cache: directories: @@ -19,7 +19,7 @@ before_install: # Download Meteor - Keep in mind that you need # to remove your travis cache to get meteor updates - export PATH="$HOME/.meteor:$PATH" - - curl https://install.meteor.com/?release=1.8 | /bin/sh + - npm install -g meteor # Install dependencies - npm install -g eslint coveralls codecov.io codacy-coverage From 76c98fd5e32457d02e575e0267179ef1c8446859 Mon Sep 17 00:00:00 2001 From: serut Date: Fri, 8 Oct 2021 20:16:03 +0200 Subject: [PATCH 2/7] feat(CI) wip circle ci build --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f6aa179..aa39b49 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ jobs: working_directory: ~/meteor-coverage steps: - checkout - - run: curl https://install.meteor.com | /bin/sh + - run: npm install -g meteor - run: meteor npm install - run: mkdir .coverage - run: meteor npm test From fdfc6a1f42b8b180546de8cfb8da2511dcccf2e6 Mon Sep 17 00:00:00 2001 From: serut Date: Fri, 8 Oct 2021 20:23:58 +0200 Subject: [PATCH 3/7] test --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b14c0c4..ae2f708 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ before_install: # to remove your travis cache to get meteor updates - export PATH="$HOME/.meteor:$PATH" - npm install -g meteor - + # Install dependencies - npm install -g eslint coveralls codecov.io codacy-coverage - meteor npm install @@ -29,6 +29,7 @@ services: - xvfb script: + - ls "$HOME/.meteor" - meteor npm test - sed 's/packages\/meteor-coverage\///' someapp/.coverage/lcov.info | coveralls || true # ignore coveralls error - sed 's/packages\/meteor-coverage\///' someapp/.coverage/lcov.info | codecov || true # ignore codecov error From f67ada62c112765e0750584a90f2af11e309acf1 Mon Sep 17 00:00:00 2001 From: serut Date: Fri, 8 Oct 2021 20:26:40 +0200 Subject: [PATCH 4/7] test --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index ae2f708..06a0903 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,8 @@ before_install: # Install dependencies - npm install -g eslint coveralls codecov.io codacy-coverage + - ls "$HOME/.meteor" + - env - meteor npm install services: From 2966b770bca2574f75815d28168adfae6cedcc25 Mon Sep 17 00:00:00 2001 From: serut Date: Fri, 8 Oct 2021 20:29:45 +0200 Subject: [PATCH 5/7] test --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 06a0903..09b16ec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ before_install: # Install dependencies - npm install -g eslint coveralls codecov.io codacy-coverage - - ls "$HOME/.meteor" + - npm list -g - env - meteor npm install From d484ae48dd8364c6862ad516a42d2f18b9ab5013 Mon Sep 17 00:00:00 2001 From: serut Date: Fri, 8 Oct 2021 20:43:12 +0200 Subject: [PATCH 6/7] test --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 09b16ec..cbac9fe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ before_cache: before_install: # Download Meteor - Keep in mind that you need # to remove your travis cache to get meteor updates - - export PATH="$HOME/.meteor:$PATH" + - export PATH="$HOME/.meteor:$PATH:$(npm bin -g)" - npm install -g meteor # Install dependencies From 41961f96d122e210e8480a7630bf22b14ca9a028 Mon Sep 17 00:00:00 2001 From: serut Date: Fri, 8 Oct 2021 20:45:26 +0200 Subject: [PATCH 7/7] test --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index cbac9fe..dc5ace1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,8 @@ before_install: - npm install -g eslint coveralls codecov.io codacy-coverage - npm list -g - env + - meteor-installer uninstall + - meteor-installer install - meteor npm install services: