From edf89973c822e86131531008aceb418a8a295268 Mon Sep 17 00:00:00 2001 From: Pierre Roux Date: Thu, 2 Jan 2025 11:05:39 +0100 Subject: [PATCH] Rename coq-native -> rocq-native --- .gitlab-ci.yml | 12 ++++++------ coq.opam | 2 +- coq.opam.template | 2 +- dev/bench/bench.sh | 2 +- dev/ci/docker/edge_ubuntu/Dockerfile | 2 +- dune-project | 4 ++-- rocq-core.opam | 2 +- rocq-runtime.opam | 4 ++-- rocq-runtime.opam.template | 2 +- stdlib/coq-stdlib.opam | 2 +- stdlib/dune-project | 2 +- 11 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d07dba9515fb..62eb5e2b1246 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,7 +41,7 @@ variables: # echo $(md5sum dev/ci/docker/old_ubuntu_lts/Dockerfile | head -c 10) # echo $(md5sum dev/ci/docker/edge_ubuntu/Dockerfile | head -c 10) BASE_CACHEKEY: "old_ubuntu_lts-V2024-10-11-f72b1aa7c6" - EDGE_CACHEKEY: "edge_ubuntu-V2024-12-13-5c140221f4" + EDGE_CACHEKEY: "edge_ubuntu-V2025-01-03-c1da705cbe" BASE_IMAGE: "$CI_REGISTRY_IMAGE:$BASE_CACHEKEY" EDGE_IMAGE: "$CI_REGISTRY_IMAGE:$EDGE_CACHEKEY" @@ -239,16 +239,16 @@ before_script: extends: .auto-use-tags # OPAM will build out-of-tree so no point in importing artifacts script: - - if [ "$COQ_CI_NATIVE" = true ]; then opam install -y coq-native; fi + - if [ "$ROCQ_CI_NATIVE" = true ]; then opam install -y rocq-native; fi - opam pin add --kind=path rocq-runtime.dev . - opam pin add --kind=path rocq-core.dev . - opam pin add --kind=path coq-stdlib.dev stdlib/ - if command -v coqc; then exit 1; fi # coq-core didn't get autoinstalled - opam pin add --kind=path coqide-server.dev . - opam pin add --kind=path coqide.dev . - - if [ "$COQ_CI_NATIVE" = true ]; then echo "Definition f x := x + x." > test_native.v; fi - - if [ "$COQ_CI_NATIVE" = true ]; then rocq c test_native.v; fi - - if [ "$COQ_CI_NATIVE" = true ]; then test -f .coq-native/Ntest_native.cmxs; fi + - if [ "$ROCQ_CI_NATIVE" = true ]; then echo "Definition f x := x + x." > test_native.v; fi + - if [ "$ROCQ_CI_NATIVE" = true ]; then rocq c test_native.v; fi + - if [ "$ROCQ_CI_NATIVE" = true ]; then test -f .coq-native/Ntest_native.cmxs; fi - opam pin add --kind=path coq-core.dev . after_script: - eval $(opam env) @@ -390,7 +390,7 @@ lint: pkg:opam:native: extends: .pkg:opam-template variables: - COQ_CI_NATIVE: "true" + ROCQ_CI_NATIVE: "true" # broken, see eg https://gitlab.com/coq/coq/-/jobs/1754045983 # pkg:nix:deploy: diff --git a/coq.opam b/coq.opam index fed28bda92b5..8ec34811025a 100644 --- a/coq.opam +++ b/coq.opam @@ -39,7 +39,7 @@ build: [ "-prefix" prefix "-mandir" man "-libdir" "%{lib}%/coq" - "-native-compiler" "yes" {coq-native:installed} "no" {!coq-native:installed} + "-native-compiler" "yes" {rocq-native:installed} "no" {!rocq-native:installed} ] {with-test} [ "dune" diff --git a/coq.opam.template b/coq.opam.template index ba20066274b7..e490e5f58686 100644 --- a/coq.opam.template +++ b/coq.opam.template @@ -4,7 +4,7 @@ build: [ "-prefix" prefix "-mandir" man "-libdir" "%{lib}%/coq" - "-native-compiler" "yes" {coq-native:installed} "no" {!coq-native:installed} + "-native-compiler" "yes" {rocq-native:installed} "no" {!rocq-native:installed} ] {with-test} [ "dune" diff --git a/dev/bench/bench.sh b/dev/bench/bench.sh index 527d74b0f07e..3af765f61f52 100755 --- a/dev/bench/bench.sh +++ b/dev/bench/bench.sh @@ -424,7 +424,7 @@ create_opam() { echo "$1_coq_commit_long = $COQ_HASH_LONG" - if [ ! -z "$coq_native" ]; then opam install coq-native; fi + if [ ! -z "$coq_native" ]; then opam install coq-native rocq-native; fi } diff --git a/dev/ci/docker/edge_ubuntu/Dockerfile b/dev/ci/docker/edge_ubuntu/Dockerfile index 3ae83a174a34..61c28dc61087 100644 --- a/dev/ci/docker/edge_ubuntu/Dockerfile +++ b/dev/ci/docker/edge_ubuntu/Dockerfile @@ -59,7 +59,7 @@ ENV COMPILER="4.14.1" \ # `ci-template-flambda` with everything. RUN opam init -a --disable-sandboxing --bare && eval $(opam env) && opam update && \ opam switch create "${COMPILER}+flambda" \ - --repositories default,ocaml-beta=git+https://github.com/ocaml/ocaml-beta-repository.git \ + --repositories default,ocaml-beta=git+https://github.com/ocaml/ocaml-beta-repository.git,coq-core-dev=https://coq.inria.fr/opam/core-dev \ --packages="ocaml-variants.${COMPILER}+options,ocaml-option-flambda" && eval $(opam env) && \ opam install $BASE_OPAM $BASE_OPAM_EDGE $COQIDE_OPAM_EDGE $CI_OPAM $CI_OPAM_EDGE && \ opam clean -a -c diff --git a/dune-project b/dune-project index 8d7684cc59d1..4280db59c4fd 100644 --- a/dune-project +++ b/dune-project @@ -30,7 +30,7 @@ (ocamlfind (>= 1.8.1)) (zarith (>= 1.11)) (conf-linux-libc-dev (= :os "linux"))) - (depopts coq-native memprof-limits memtrace) + (depopts rocq-native memprof-limits memtrace) (synopsis "The Coq Proof Assistant -- Core Binaries and Tools") (description "Coq is a formal proof management system. It provides a formal language to write mathematical definitions, executable @@ -60,7 +60,7 @@ prelude, now living in the rocq-core package.")) (name rocq-core) (depends (rocq-runtime (= :version))) - (depopts coq-native) + (depopts rocq-native) (synopsis "The Coq Proof Assistant with its prelude") (description "Coq is a formal proof management system. It provides a formal language to write mathematical definitions, executable diff --git a/rocq-core.opam b/rocq-core.opam index 9c1332abad91..688a2086e748 100644 --- a/rocq-core.opam +++ b/rocq-core.opam @@ -28,7 +28,7 @@ depends: [ "rocq-runtime" {= version} "odoc" {with-doc} ] -depopts: ["coq-native"] +depopts: ["rocq-native"] dev-repo: "git+https://github.com/coq/coq.git" build: [ ["dune" "subst"] {dev} diff --git a/rocq-runtime.opam b/rocq-runtime.opam index 8dea4a73a6dc..36c676962cb1 100644 --- a/rocq-runtime.opam +++ b/rocq-runtime.opam @@ -34,7 +34,7 @@ depends: [ "conf-linux-libc-dev" {os = "linux"} "odoc" {with-doc} ] -depopts: ["coq-native" "memprof-limits" "memtrace"] +depopts: ["rocq-native" "memprof-limits" "memtrace"] dev-repo: "git+https://github.com/coq/coq.git" build: [ ["dune" "subst"] {dev} @@ -42,7 +42,7 @@ build: [ "-prefix" prefix "-mandir" man "-libdir" "%{lib}%/coq" - "-native-compiler" "yes" {coq-native:installed} "no" {!coq-native:installed} + "-native-compiler" "yes" {rocq-native:installed} "no" {!rocq-native:installed} ] [ "dune" diff --git a/rocq-runtime.opam.template b/rocq-runtime.opam.template index 3484d4ce7366..7f33cb67fb6e 100644 --- a/rocq-runtime.opam.template +++ b/rocq-runtime.opam.template @@ -4,7 +4,7 @@ build: [ "-prefix" prefix "-mandir" man "-libdir" "%{lib}%/coq" - "-native-compiler" "yes" {coq-native:installed} "no" {!coq-native:installed} + "-native-compiler" "yes" {rocq-native:installed} "no" {!rocq-native:installed} ] [ "dune" diff --git a/stdlib/coq-stdlib.opam b/stdlib/coq-stdlib.opam index c8f13ee263e8..0a9e3e65cf13 100644 --- a/stdlib/coq-stdlib.opam +++ b/stdlib/coq-stdlib.opam @@ -28,7 +28,7 @@ depends: [ "rocq-core" {= version} "odoc" {with-doc} ] -depopts: ["coq-native"] +depopts: ["rocq-native"] dev-repo: "git+https://github.com/coq/coq.git" build: [ ["dune" "subst"] {dev} diff --git a/stdlib/dune-project b/stdlib/dune-project index 1284ad667d3b..748dd219ee5b 100644 --- a/stdlib/dune-project +++ b/stdlib/dune-project @@ -25,7 +25,7 @@ (depends rocq-runtime (rocq-core (= :version))) - (depopts coq-native) + (depopts rocq-native) (synopsis "The Coq Proof Assistant -- Standard Library") (description "Coq is a formal proof management system. It provides a formal language to write mathematical definitions, executable