Skip to content

Commit

Permalink
fix ci (#1282)
Browse files Browse the repository at this point in the history
  • Loading branch information
4eUeP committed Feb 17, 2023
1 parent 0dff0fb commit f712cf0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,10 @@ sql:: sql-deps
(cd hstream-sql/gen-sql && mv HStream/SQL/Lex.x.new HStream/SQL/Lex.x && make)

sql-deps::
(cd ~ && command -v bnfc || cabal install BNFC --constraint 'BNFC ^>= 2.9')
(cd ~ && command -v alex || cabal install alex --constraint 'alex ^>= 3.2.7.1')
(cd ~ && command -v happy || cabal install happy)
# Change to a temporary dir to avoid create hstream dists.
(cd $(shell mktemp -d) && command -v bnfc || cabal install BNFC --constraint 'BNFC ^>= 2.9')
(cd $(shell mktemp -d) && command -v alex || cabal install alex --constraint 'alex ^>= 3.2.7.1')
(cd $(shell mktemp -d) && command -v happy || cabal install happy)

clean:
find ./common -maxdepth 10 -type d \
Expand Down

0 comments on commit f712cf0

Please sign in to comment.