meshblu-connector-packager
v12.1.1
Published
[![Build Status](https://travis-ci.org/octoblu/meshblu-connector-packager.svg?branch=master)](https://travis-ci.org/octoblu/meshblu-connector-packager) [![Code Climate](https://codeclimate.com/github/octoblu/meshblu-connector-packager/badges/gpa.svg)](htt
Downloads
50
Keywords
Readme
meshblu-connector-deployer
Manual Usage:
npm install --global meshblu-connector-packager
cd /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
{
"scripts": {
"package": "meshblu-connector-packager"
},
"meshbluConnector": {
"connectorAssemblerVersion": "latest",
"dependencyManagerVersion": "latest",
"ignitionVersion": "v1.0.6",
"githubSlug": "octoblu/meshblu-connector-{connector-name}",
"schemasUrl": "https://raw.githubusercontent.com/octoblu/meshblu-connector-{connector-name}/{schema-tag}/schemas.json"
}
}
Example Travis Usage
language: cpp
os:
- linux
- osx
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- g++-4.8-multilib
- gcc-multilib
- build-essential
env:
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"; fi
install:
- npm install --build-from-source
script:
- npm test
before_deploy:
- npm run package
deploy:
- provider: releases
api_key:
secure: "secure-api-key"
file_glob: true
file:
- "deploy/*"
skip_cleanup: true
on:
tags: true
- provider: npm
email: [email protected]
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.0
platform:
- x64
- x86
shallow_clone: true
skip_non_tags: true
install:
- 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: off
test: off
deploy:
- 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