Skip to content

Commit ec2f132

Browse files
coqbot-app[bot]SkySkimmer
andauthoredFeb 24, 2025··
Merge PR rocq-prover#20282: [CI] Fix jasmin
Reviewed-by: SkySkimmer Co-authored-by: SkySkimmer <SkySkimmer@users.noreply.github.com>
2 parents a7dca42 + 207e21a commit ec2f132

File tree

4 files changed

+33
-1
lines changed

4 files changed

+33
-1
lines changed
 

‎.gitlab-ci.yml

+12
Original file line numberDiff line numberDiff line change
@@ -878,6 +878,16 @@ library:ci-mczify:
878878
- library:ci-mathcomp
879879
stage: build-3+
880880

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+
881891
library:ci-finmap:
882892
extends: .ci-template-flambda
883893
needs:
@@ -1027,6 +1037,8 @@ library:ci-jasmin:
10271037
- plugin:ci-elpi_hb
10281038
- library:ci-mathcomp
10291039
- library:ci-mathcomp_word
1040+
- library:ci-mczify
1041+
- library:ci-algebra_tactics
10301042
stage: build-3+
10311043

10321044
library:ci-http:

‎Makefile.ci

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ CI_PLATFORM_FULL= \
2828
ci-mathcomp \
2929
ci-mathcomp_word \
3030
ci-mczify \
31+
ci-algebra_tactics \
3132
ci-finmap \
3233
ci-bigenough \
3334
ci-analysis \
@@ -173,6 +174,7 @@ ci-fourcolor: ci-mathcomp
173174
ci-oddorder: ci-mathcomp
174175
ci-fcsl_pcm: ci-mathcomp
175176
ci-mczify: ci-mathcomp
177+
ci-algebra_tactics: ci-mczify
176178
ci-mathcomp_test: ci-mathcomp
177179
ci-mathcomp_word: ci-mathcomp
178180
ci-finmap: ci-mathcomp
@@ -193,7 +195,7 @@ ci-ext_lib: ci-stdlib
193195

194196
ci-itauto: ci-stdlib
195197

196-
ci-jasmin: ci-mathcomp_word
198+
ci-jasmin: ci-mathcomp_word ci-algebra_tactics
197199

198200
ci-autosubst: ci-stdlib
199201
ci-iris: ci-autosubst

‎dev/ci/ci-basic-overlay.sh

+3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ project oddorder "https://github.com/math-comp/odd-order" "master"
7777
project mczify "https://github.com/math-comp/mczify" "master"
7878
# Contact @pi8027 on github
7979

80+
project algebra_tactics "https://github.com/math-comp/algebra-tactics" "master"
81+
# Contact @pi8027, @proux01 on github
82+
8083
project finmap "https://github.com/math-comp/finmap" "master"
8184
# Contact @CohenCyril on github
8285

‎dev/ci/scripts/ci-algebra_tactics.sh

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+
)

0 commit comments

Comments
 (0)
Please sign in to comment.