From a794544de76c2d4d0017ba98ebaf58f8a619e242 Mon Sep 17 00:00:00 2001 From: Wayne Parrott <5588978+wayneparrott@users.noreply.github.com> Date: Thu, 6 Jan 2022 14:43:52 -0600 Subject: [PATCH 1/4] Updated test to use @rclnodejs scoped packages --- test/struct.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/struct.js b/test/struct.js index 669a825..d99137a 100644 --- a/test/struct.js +++ b/test/struct.js @@ -1,7 +1,7 @@ 'use strict'; var assert = require('assert') - , ref = require('ref-napi') - , ArrayType = require('ref-array-di')(ref) + , ref = require('@rclnodejs/ref-napi') + , ArrayType = require('@rclnodejs/ref-array-di')(ref) , Struct = require('..')(ref) , bindings = require('node-gyp-build')(__dirname); From efe726eb3057b3ec64fc997f1cb7877438be34ef Mon Sep 17 00:00:00 2001 From: Wayne Parrott <5588978+wayneparrott@users.noreply.github.com> Date: Thu, 6 Jan 2022 15:50:03 -0600 Subject: [PATCH 2/4] Update travisci to bionic (ubuntu 18) --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 0d31a73..73eefab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,7 @@ sudo: false +dist: bionic + addons: apt: sources: From d3486262f4f42d9c0d15718fd2b69fb356608be3 Mon Sep 17 00:00:00 2001 From: Wayne Parrott <5588978+wayneparrott@users.noreply.github.com> Date: Thu, 6 Jan 2022 16:05:02 -0600 Subject: [PATCH 3/4] Extended appveyor node matrix to include 16 --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.yml b/appveyor.yml index eec7471..cb1015a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,6 +7,7 @@ environment: # node.js - nodejs_version: "14" - nodejs_version: "15" + - nodejs_version: "16" platform: - x86 From f708104e7a8d6298125c0723a382952ab95de181 Mon Sep 17 00:00:00 2001 From: Wayne Parrott <5588978+wayneparrott@users.noreply.github.com> Date: Thu, 6 Jan 2022 16:29:58 -0600 Subject: [PATCH 4/4] Added osx and node 10 & 12 to build matrix --- .travis.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 73eefab..14afbb7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,18 +2,27 @@ sudo: false dist: bionic +os: + - linux + - osx + +osx_image: xcode12 + addons: apt: sources: - ubuntu-toolchain-r-test + packages: + - g++ language: node_js node_js: + - "10" + - "12" - "14" - - "15" - "16" after_success: - npm install coveralls - - nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls + - nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls \ No newline at end of file