File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 23
23
- AUTOTOOLS=no COVERAGE=yes BUILD=static
24
24
- AUTOTOOLS=yes COVERAGE=no BUILD=shared
25
25
26
+ global :
27
+ - SASS_SPEC_REPO=https://github.com/sass/sass-spec.git
28
+ - SASS_SPEC_REPO_GITLOC=master
29
+
26
30
# currenty there are various issues when
27
31
# built with coverage, clang and autotools
28
32
# - AUTOTOOLS=yes COVERAGE=yes BUILD=shared
Original file line number Diff line number Diff line change 3
3
script/branding
4
4
5
5
if [ ! -d " sass-spec" ]; then
6
- git clone https://github.com/sass/sass-spec.git
6
+ if [ -z " $SASS_SPEC_REPO " ]; then
7
+ SASS_SPEC_REPO=https://github.com/sass/sass-spec.git
8
+ fi
9
+ git clone $SASS_SPEC_REPO
7
10
fi
8
11
if [ ! -d " sassc" ]; then
9
12
git clone https://github.com/sass/sassc.git
Original file line number Diff line number Diff line change 2
2
3
3
script/bootstrap
4
4
5
+ SASS_SPEC_REPO_GITLOC ? = master
6
+
7
+ if [ -z " $SASS_SPEC_REPO_GITLOC " ]; then
8
+ SASS_SPEC_REPO_GITLOC=master
9
+ fi
10
+
11
+ echo " ======================================================================"
12
+ echo " Checking out sass-spec @ $SASS_SPEC_REPO_GITLOC "
13
+ echo " ======================================================================"
14
+
15
+ (cd $SASS_SPEC_PATH ; git checkout $SASS_SPEC_REPO_GITLOC )
16
+
5
17
make $MAKE_OPTS test_build
You can’t perform that action at this time.
0 commit comments