Skip to content

Commit 4916b9b

Browse files
committed
Try to fix CI github actions
1 parent 1db5f78 commit 4916b9b

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

.github/workflows/build-and-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,17 +193,17 @@ jobs:
193193
# fail-fast: false
194194
matrix:
195195
config:
196-
- {build: shared, platform: x64, cflags: '-g -fsanitize=address'}
197-
- {build: static, platform: x64, cflags: '-g -fsanitize=address'}
198-
- {build: shared, platform: x86, cflags: '-g -fsanitize=address'}
199-
- {build: static, platform: x86, cflags: '-g -fsanitize=address'}
196+
- {build: shared, platform: x64}
197+
- {build: static, platform: x64}
198+
- {build: shared, platform: x86}
199+
- {build: static, platform: x86}
200200

201201
env:
202202
ASAN_OPTIONS: ${{ matrix.config.asan }}
203203
EXTRA_CFLAGS: ${{ matrix.config.cflags }}
204204
EXTRA_CXXFLAGS: ${{ matrix.config.cflags }}
205-
SASS_LIBSASS_PATH: libsass
206-
COVERAGE: no
205+
#SASS_LIBSASS_PATH: libsass
206+
#COVERAGE: no
207207

208208
steps:
209209
- name: Change git config to preserve line-endings

src/parser.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -674,12 +674,15 @@ namespace Sass {
674674
error("Expected " + name + ".",
675675
scanner.rawSpanFrom(start));
676676
}
677+
// EO expectIdentifier
677678

678-
// Throws an error associated with [pstate].
679-
void Parser::error(sass::string message, SourceSpan pstate) {
679+
// Throws a parser error associated with [pstate].
680+
void Parser::error(sass::string message, SourceSpan pstate)
681+
{
680682
callStackFrame frame(compiler, BackTrace(pstate));
681683
throw Exception::ParserException(compiler, message);
682684
}
685+
// EO error
683686

684687
/////////////////////////////////////////////////////////////////////////
685688
/////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)