Skip to content

Use pinned flow_parser #7390

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,12 @@ jobs:
DUNE_PROFILE: release

steps:
- name: "Windows: Set git to use LF"
- name: "Windows: Set git config"
if: runner.os == 'Windows'
run: |
git config --global core.autocrlf false
git config --global core.eol lf
git config --system core.autocrlf false
git config --system core.eol lf
git config --system core.longpaths true

- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ test-gentype:
test-all: test test-gentype test-analysis test-tools

reanalyze:
reanalyze.exe -set-exit-code -all-cmt _build/default/compiler _build/default/tests -exclude-paths compiler/outcome_printer,compiler/ml,compiler/js_parser,compiler/frontend,compiler/ext,compiler/depends,compiler/core,compiler/common,compiler/cmij,compiler/bsb_helper,compiler/bsb
reanalyze.exe -set-exit-code -all-cmt _build/default/compiler _build/default/tests -exclude-paths compiler/outcome_printer,compiler/ml,compiler/frontend,compiler/ext,compiler/depends,compiler/core,compiler/common,compiler/cmij,compiler/bsb_helper,compiler/bsb

lib: build
./scripts/buildRuntime.sh
Expand Down
2 changes: 1 addition & 1 deletion analysis/vendor/dune
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(dirs ext ml res_syntax json js_parser)
(dirs ext ml res_syntax json flow_parser)
2 changes: 1 addition & 1 deletion compiler/bsc/dune
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
(package rescript)
(flags
(:standard -w +a-4-9-30-40-41-42-48-70))
(libraries common core depends gentype js_parser syntax))
(libraries common core depends flow_parser gentype syntax))
2 changes: 1 addition & 1 deletion compiler/core/dune
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
(run %{bin:cppo} %{env:CPPO_FLAGS=} %{input-file})))
(flags
(:standard -w +a-4-9-27-30-40-41-42-48-70))
(libraries depends ext frontend gentype js_parser))
(libraries depends ext flow_parser frontend gentype))
2 changes: 1 addition & 1 deletion compiler/dune
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
core
depends
ext
flow_parser
frontend
gentype
jsoo
js_parser
ml
syntax)

Expand Down
Loading