mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
build: Update Docker container
Includes a change to handle a mypy update.
This commit is contained in:
parent
c805400a39
commit
94b532bc35
2 changed files with 5 additions and 3 deletions
|
@ -33,7 +33,9 @@ def parse(
|
|||
original_text = tokens[0].string if len(tokens) else ""
|
||||
ctx = ParseContext(tokens, original_text)
|
||||
AnyOf(UI).parse(ctx)
|
||||
ast_node = ctx.last_group.to_ast() if ctx.last_group else None
|
||||
|
||||
assert ctx.last_group is not None
|
||||
ast_node = ctx.last_group.to_ast()
|
||||
|
||||
errors = [*ctx.errors, *ast_node.errors]
|
||||
warnings = [*ctx.warnings, *ast_node.warnings]
|
||||
|
|
|
@ -7,8 +7,8 @@ git clone --depth=1 https://gitlab.gnome.org/GNOME/gtk.git
|
|||
cd gtk
|
||||
meson setup builddir \
|
||||
--prefix=/usr \
|
||||
-Dgtk_doc=true \
|
||||
-Ddemos=false \
|
||||
-Ddocumentation=true \
|
||||
-Dbuild-demos=false \
|
||||
-Dbuild-examples=false \
|
||||
-Dbuild-tests=false \
|
||||
-Dbuild-testsuite=false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue