Skip to content
Snippets Groups Projects
Commit 9a3a8a93 authored by Shachar Itzhaky's avatar Shachar Itzhaky
Browse files

[bugfix] [build] Fix failing CI.

Build order fluctuations caused errors in our CI because of deps
not being built when needed, specifically for Ltac2.
parent 985bb649
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@
node_modules)
(action
(progn
(run npm i) ; sorry, have to run this again because of the symlinks I erased before *facepalm*
(run npm install --no-save) ; sorry, have to run this again because of the symlinks I erased before *facepalm*
(run npm run build))))
; Just the worker
......
......@@ -44,3 +44,22 @@ index ae31adb..faa1c1d 100644
(include_subdirs qualified)
diff --git a/user-contrib/Ltac2/dune b/user-contrib/Ltac2/dune
index 785cdfe..a5adfa6 100644
--- a/user-contrib/Ltac2/dune
+++ b/user-contrib/Ltac2/dune
@@ -3,4 +3,13 @@
(package coq-stdlib)
(synopsis "Ltac2 tactic language")
(flags -w -deprecated-native-compiler-option)
- (libraries coq-core.plugins.ltac2))
+ (libraries ; yes?
+ coq-core.plugins.ltac
+ coq-core.plugins.tauto
+
+ coq-core.plugins.cc
+ coq-core.plugins.firstorder
+
+ coq-core.plugins.number_string_notation
+
+ coq-core.plugins.ltac2))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment