We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d355931 commit f183fedCopy full SHA for f183fed
1 file changed
.github/workflows/javascript.yml
@@ -62,10 +62,20 @@ jobs:
62
cache: 'npm'
63
cache-dependency-path: '**/package-lock.json'
64
65
- - name: Generate runtime grammar
+ - name: Set up project
66
run: |
67
cd ..
68
pip install --requirement requirements.txt
69
+ # TODO: Remove again after upstream patch was merged and released.
70
+ # https://github.com/crate/cratedb-sqlparse/issues/170
71
+ # https://github.com/antlr/antlr4-tools/issues/22
72
+ # https://github.com/antlr/antlr4-tools/pull/23
73
+ pip uninstall --yes antlr4-tools
74
+ pip install --upgrade 'antlr4-tools @ git+https://github.com/crate-workbench/antlr4-tools@search.maven.org'
75
+
76
+ - name: Generate runtime grammar
77
+ run: |
78
+ cd ..
79
python setup_grammar.py javascript
80
81
- name: Set up project
0 commit comments