File tree Expand file tree Collapse file tree 8 files changed +12
-19
lines changed
Expand file tree Collapse file tree 8 files changed +12
-19
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,6 @@ install:
2424
2525 export PREBUILD_SLUG="$TRAVIS_REPO_SLUG";
2626
27- bash ci/install.sh osx "$PREBUILD_VERSION" "$PREBUILD_CANVAS_VERSION" "$PREBUILD_NODE_VERSIONS";
27+ bash -c 'export NVM_DIR=$HOME/.nvm; . $HOME/.nvm/nvm.sh; . ci/install.sh osx "$PREBUILD_VERSION" "$PREBUILD_CANVAS_VERSION" "$PREBUILD_NODE_VERSIONS"' ;
2828
2929 fi
Original file line number Diff line number Diff line change 11version : 0.0.{build}
22image : Visual Studio 2017
33install :
4- - ps : Install-Product node 8 x64
4+ - ps : Install-Product node 10 x64
55 - set PREBUILD_SLUG=%APPVEYOR_REPO_NAME%
66 - npm install -g npm node-gyp
77 - set "PATH=%APPDATA%\npm;%PATH%"
Original file line number Diff line number Diff line change @@ -32,13 +32,11 @@ source ci/$OS/preinstall.sh
3232cp ci/$OS /binding.gyp node-canvas/binding.gyp
3333
3434for ver in $NODEJS_VERSIONS ; do
35- echo " ------------ Building with node $ver ------------"
36-
37- source ci/$OS /node_version.sh $ver ;
35+ echo " ------------ Building for node $ver ------------"
3836
3937 cd node-canvas
4038
41- node-gyp rebuild || {
39+ node-gyp rebuild --target= $ver || {
4240 echo " error building in nodejs version $ver "
4341 exit 1;
4442 }
@@ -56,7 +54,6 @@ for ver in $NODEJS_VERSIONS; do
5654done ;
5755
5856echo " ------------ Releasing with release.js ------------"
59- source ci/$OS /node_version.sh 11
6057node ci/release.js $PREBUILD_VERSION || exit 1;
6158
6259cd ..
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# apt-get-style dependencies aren't done here since the
22# linux build is done on a docker image that has them
33
4+ nvm install node # latest
5+ nvm use node # latest
6+ npm install -g node-gyp
7+
48git clone git://anongit.gentoo.org/proj/pax-utils.git
59cd pax-utils
610PATH=$PATH :$PWD
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ nvm install node # latest
2+ nvm use node # latest
3+ npm install -g node-gyp
4+
15brew update
26brew install cairo pango librsvg python3 # python3 is for macpack
37brew upgrade python # activates python 3
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments