Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sqlite3
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
俞永鹏
node-sqlite3
Commits
749e5280
Commit
749e5280
authored
May 08, 2019
by
bruce-one
Committed by
Kewde
May 07, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Node 12: ci integration
parent
4f5b9963
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
3 deletions
+17
-3
.travis.yml
.travis.yml
+11
-0
appveyor.yml
appveyor.yml
+4
-0
build-appveyor.bat
scripts/build-appveyor.bat
+1
-2
install_node.sh
scripts/install_node.sh
+1
-1
No files found.
.travis.yml
View file @
749e5280
...
...
@@ -19,6 +19,14 @@ matrix:
include
:
# Linux
-
os
:
linux
dist
:
xenial
compiler
:
clang
env
:
NODE_VERSION="12"
addons
:
apt
:
sources
:
[
'
ubuntu-toolchain-r-test'
,
'
llvm-toolchain-precise-3.5'
,
'
gcc-multilib'
,
'
g++-multilib'
,
'
libsqlite3-dev:i386'
]
packages
:
[
'
clang-3.5'
,
'
libstdc++-4.9-dev'
]
-
os
:
linux
compiler
:
clang
env
:
NODE_VERSION="11"
addons
:
...
...
@@ -85,6 +93,9 @@ matrix:
# OS X
-
os
:
osx
compiler
:
clang
env
:
NODE_VERSION="12"
# node abi 67
-
os
:
osx
compiler
:
clang
env
:
NODE_VERSION="11"
# node abi 67
-
os
:
osx
compiler
:
clang
...
...
appveyor.yml
View file @
749e5280
...
...
@@ -34,6 +34,10 @@ environment:
platform
:
x64
-
nodejs_version
:
11
platform
:
x86
-
nodejs_version
:
12
platform
:
x64
-
nodejs_version
:
12
platform
:
x86
# electron
-
nodejs_version
:
10
platform
:
x64
...
...
scripts/build-appveyor.bat
View file @
749e5280
...
...
@@ -32,8 +32,7 @@ ECHO using MSBuild^: && CALL msbuild /version && ECHO.
IF %ERRORLEVEL% NEQ 0 GOTO ERROR
ECHO downloading/installing node
IF /I "%platform%"=="x64" powershell Install-Product node $env:nodejs_version x64
IF /I "%platform%"=="x86" powershell Install-Product node $env:nodejs_version x86
powershell Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:PLATFORM
IF %ERRORLEVEL% NEQ 0 GOTO ERROR
powershell Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force
...
...
scripts/install_node.sh
View file @
749e5280
...
...
@@ -15,7 +15,7 @@ nvm unload || true
rm
-rf
./__nvm/
&&
git clone
--depth
1 https://github.com/creationix/nvm.git ./__nvm
source
./__nvm/nvm.sh
nvm install
${
NODE_VERSION
}
nvm use
${
NODE_VERSION
}
nvm use
--delete-prefix
${
NODE_VERSION
}
node
--version
npm
--version
which node
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment