File tree 4 files changed +33
-1
lines changed
4 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -878,6 +878,16 @@ library:ci-mczify:
878
878
- library:ci-mathcomp
879
879
stage : build-3+
880
880
881
+ library:ci-algebra_tactics :
882
+ extends : .ci-template-flambda
883
+ needs :
884
+ - build:edge+flambda
885
+ - library:ci-stdlib+flambda
886
+ - plugin:ci-elpi_hb
887
+ - library:ci-mathcomp
888
+ - library:ci-mczify
889
+ stage : build-3+
890
+
881
891
library:ci-finmap :
882
892
extends : .ci-template-flambda
883
893
needs :
@@ -1027,6 +1037,8 @@ library:ci-jasmin:
1027
1037
- plugin:ci-elpi_hb
1028
1038
- library:ci-mathcomp
1029
1039
- library:ci-mathcomp_word
1040
+ - library:ci-mczify
1041
+ - library:ci-algebra_tactics
1030
1042
stage : build-3+
1031
1043
1032
1044
library:ci-http :
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ CI_PLATFORM_FULL= \
28
28
ci-mathcomp \
29
29
ci-mathcomp_word \
30
30
ci-mczify \
31
+ ci-algebra_tactics \
31
32
ci-finmap \
32
33
ci-bigenough \
33
34
ci-analysis \
@@ -173,6 +174,7 @@ ci-fourcolor: ci-mathcomp
173
174
ci-oddorder: ci-mathcomp
174
175
ci-fcsl_pcm: ci-mathcomp
175
176
ci-mczify: ci-mathcomp
177
+ ci-algebra_tactics: ci-mczify
176
178
ci-mathcomp_test: ci-mathcomp
177
179
ci-mathcomp_word: ci-mathcomp
178
180
ci-finmap: ci-mathcomp
@@ -193,7 +195,7 @@ ci-ext_lib: ci-stdlib
193
195
194
196
ci-itauto: ci-stdlib
195
197
196
- ci-jasmin: ci-mathcomp_word
198
+ ci-jasmin: ci-mathcomp_word ci-algebra_tactics
197
199
198
200
ci-autosubst: ci-stdlib
199
201
ci-iris: ci-autosubst
Original file line number Diff line number Diff line change @@ -77,6 +77,9 @@ project oddorder "https://github.com/math-comp/odd-order" "master"
77
77
project mczify " https://github.com/math-comp/mczify" " master"
78
78
# Contact @pi8027 on github
79
79
80
+ project algebra_tactics " https://github.com/math-comp/algebra-tactics" " master"
81
+ # Contact @pi8027, @proux01 on github
82
+
80
83
project finmap " https://github.com/math-comp/finmap" " master"
81
84
# Contact @CohenCyril on github
82
85
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ ci_dir=" $( dirname " $0 " ) "
6
+ . " ${ci_dir} /ci-common.sh"
7
+
8
+ git_download algebra_tactics
9
+
10
+ if [ " $DOWNLOAD_ONLY " ]; then exit 0; fi
11
+
12
+ ( cd " ${CI_BUILD_DIR} /algebra_tactics"
13
+ make
14
+ make install
15
+ )
You can’t perform that action at this time.
0 commit comments