Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sass
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-sass
Commits
2471e73c
Commit
2471e73c
authored
Nov 13, 2014
by
Adeel Mujahid
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #538 from am11/master
CI: Use env.SKIP_SASS_BINARY_DOWNLOAD_FOR_CI
parents
ad920efa
cd585b9d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
.travis.yml
.travis.yml
+4
-1
appveyor.yml
appveyor.yml
+1
-0
install.js
scripts/install.js
+1
-1
No files found.
.travis.yml
View file @
2471e73c
language
:
node_js
language
:
node_js
env
:
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true
compiler
:
compiler
:
-
gcc
-
gcc
node_js
:
node_js
:
...
@@ -10,7 +13,7 @@ before_install:
...
@@ -10,7 +13,7 @@ before_install:
-
sudo apt-get install gcc-4.8 g++-4.8;
-
sudo apt-get install gcc-4.8 g++-4.8;
-
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20;
-
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20;
-
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 20;
-
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 20;
-
sudo
g++ --version;
-
g++ --version;
-
sudo apt-get update -qq;
-
sudo apt-get update -qq;
-
git submodule update --init --recursive
-
git submodule update --init --recursive
...
...
appveyor.yml
View file @
2471e73c
...
@@ -4,6 +4,7 @@ init:
...
@@ -4,6 +4,7 @@ init:
-
git config --global core.autocrlf input
-
git config --global core.autocrlf input
environment
:
environment
:
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI
:
true
matrix
:
matrix
:
-
nodejs_version
:
0.10.32
-
nodejs_version
:
0.10.32
-
nodejs_version
:
0.11.13
-
nodejs_version
:
0.11.13
...
...
scripts/install.js
View file @
2471e73c
...
@@ -60,7 +60,7 @@ function fetch(name) {
...
@@ -60,7 +60,7 @@ function fetch(name) {
* Skip if CI
* Skip if CI
*/
*/
if
(
process
.
env
.
CI
||
process
.
env
.
APPVEYOR
)
{
if
(
process
.
env
.
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI
)
{
console
.
log
(
'Skipping downloading binaries on CI builds'
);
console
.
log
(
'Skipping downloading binaries on CI builds'
);
return
;
return
;
}
}
...
...
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