meshblu-connector-deployer
Manual Usage:
npm install --global meshblu-connector-packagercd /path/to/meshblu-connector-{connector-name}meshblu-connector-packager
Installation
cd /path/to/meshblu-connector-{connector-name}npm install --save-dev meshblu-connector-packager
Add the following to your package.json
Example Travis Usage
language: cppos:- linux- osxaddons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - g++-4.8-multilib - gcc-multilib - build-essentialenv: matrix: - PACKAGER_NODE_VERSION="5.5" PACKAGER_ARCH="amd64" MAIN_BUILD="true" - PACKAGER_NODE_VERSION="5.5" PACKAGER_ARCH="386"matrix: exclude: - os: osx env: PACKAGER_NODE_VERSION="5.5" PACKAGER_ARCH="386"branches: only: - "/^v[0-9]/"before_install:- PACKAGER_URL="https://meshblu-connector.octoblu.com/tools/packager/latest"- curl -fsS "${PACKAGER_URL}/travis_install_node.sh" -o /tmp/travis_install_node.sh- chmod +x /tmp/travis_install_node.sh- ". /tmp/travis_install_node.sh"- if [ "$TRAVIS_OS_NAME" == "linux" -a "$MAIN_BUILD" == "true" ]; then export NPM_PUBLISH="true"; fiinstall:- npm install --build-from-sourcescript:- npm testbefore_deploy:- npm run packagedeploy:- provider: releases api_key: secure: "secure-api-key" file_glob: true file: - "deploy/*" skip_cleanup: true on: tags: true- provider: npm email: serveradmin@octoblu.com api_key: secure: "secure-api-key" on: tags: true condition: "$NPM_PUBLISH = true"
Don't forget to encrypt and add your NPM Key and Github Oauth Token
Example Appveyor Usage:
environment: nodejs_version: 5.5.0platform: - x64 - x86shallow_clone: trueskip_non_tags: trueinstall: - ps: Install-Product node $env:nodejs_version $env:Platform - node --version - npm --version - node -e "console.log(process.arch);" - FOR /F "delims=" %%a IN ('node -e "console.log(require('./package.json').version)"') DO SET PACKAGE_VERSION=%%~a - SET PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH% - SET GYP_MSVS_VERSION=2013 - if "%PLATFORM%" == "x64" set PATH=C:\Python27-x64;%PATH% - if "%PLATFORM%" == "x86" SET PATH=C:\python27;%PATH% - npm install - ps: >- if($env:platform -eq "x86") { $env:PACKAGER_ARCH="386" } else { $env:PACKAGER_ARCH="amd64" } - npm run package - ps: $root = Resolve-Path deploy; [IO.Directory]::GetFiles($root.Path, '*.*', 'AllDirectories') | % { Push-AppveyorArtifact $_ -FileName $_.Substring($root.Path.Length + 1) -DeploymentName Connector }build: offtest: offdeploy:- provider: GitHub description: 'Meshblu Connector Bundles' auth_token: secure: "secure-api-key" artifact: Connector draft: false prerelease: false on: branch: master appveyor_repo_tag: true