Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,10 @@ jobs:
strategy:
matrix:
image:
- 'mathcomp/mathcomp-dev:coq-dev'
- 'mathcomp/mathcomp:2.2.0-coq-8.19'
- 'mathcomp/mathcomp:2.1.0-coq-8.18'
- 'mathcomp/mathcomp:2.0.0-coq-8.17'
- 'mathcomp/mathcomp:1.17.0-coq-8.17'
- 'mathcomp/mathcomp:1.16.0-coq-8.17'
- 'mathcomp/mathcomp:1.15.0-coq-8.16'
- 'mathcomp/mathcomp:1.14.0-coq-8.15'
- 'mathcomp/mathcomp:1.13.0-coq-8.15'
- 'mathcomp/mathcomp:1.12.0-coq-8.14'
- 'mathcomp/mathcomp-dev:rocq-prover-dev'
- 'mathcomp/mathcomp:2.6.0-rocq-prover-9.2'
- 'mathcomp/mathcomp:2.6.0-rocq-prover-9.1'
- 'mathcomp/mathcomp:2.6.0-rocq-prover-9.0'
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dist:

doc: clean-doc manual.pdf
- mkdir -p $(DOC)
coqdoc $(COQDOCFLAGS) -R theories Autosubst -R examples/plain Plain \
rocq doc $(COQDOCFLAGS) -R theories Autosubst -R examples/plain Plain \
-R examples/ssr Ssr $(THEORIES) $(EXAMPLES_PLAIN) $(EXAMPLES_SSR)
cp $(EXTRA_DIR)resources/* $(DOC)
cp manual.pdf $(DOC)
Expand Down
5 changes: 3 additions & 2 deletions coq-autosubst-ci.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ synopsis: "Autosubst (CI only)"

build: [make "-j%{jobs}%" "all"]
depends: [
"coq"
"coq-mathcomp-ssreflect"
"rocq-core"
"rocq-stdlib"
"rocq-mathcomp-ssreflect"
]
3 changes: 2 additions & 1 deletion coq-autosubst.opam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ substitutions."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {(>= "8.14" & < "8.21~") | (= "dev")}
"rocq-core"
"rocq-stdlib"
]
Comment thread
skylee03 marked this conversation as resolved.

tags: [
Expand Down
2 changes: 1 addition & 1 deletion examples/plain/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ all: $(COQMAKEFILE)
+$(MAKE) -f $(COQMAKEFILE) all

$(COQMAKEFILE): Makefile $(VS)
coq_makefile -R $(LIB) Autosubst -R . Plain $(VS) -o $(COQMAKEFILE)
rocq makefile -R $(LIB) Autosubst -R . Plain $(VS) -o $(COQMAKEFILE)

clean: $(COQMAKEFILE)
-$(COQMAKE) clean
Expand Down
2 changes: 1 addition & 1 deletion examples/ssr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ all: $(COQMAKEFILE)
+$(MAKE) -f $(COQMAKEFILE) all

$(COQMAKEFILE): Makefile $(VS)
coq_makefile -R $(LIB) Autosubst $(VS) -R . Ssr -o $(COQMAKEFILE)
rocq makefile -R $(LIB) Autosubst $(VS) -R . Ssr -o $(COQMAKEFILE)

clean: $(COQMAKEFILE)
-$(COQMAKE) clean
Expand Down
20 changes: 4 additions & 16 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,25 +50,13 @@ supported_coq_versions:
opam: '{(>= "8.14" & < "8.21~") | (= "dev")}'
Comment thread
skylee03 marked this conversation as resolved.
Outdated

tested_coq_opam_versions:
- version: 'coq-dev'
- version: 'rocq-prover-dev'
repo: 'mathcomp/mathcomp-dev'
- version: '2.2.0-coq-8.19'
- version: '2.6.0-rocq-prover-9.2'
repo: 'mathcomp/mathcomp'
- version: '2.1.0-coq-8.18'
- version: '2.6.0-rocq-prover-9.1'
repo: 'mathcomp/mathcomp'
- version: '2.0.0-coq-8.17'
repo: 'mathcomp/mathcomp'
- version: '1.17.0-coq-8.17'
repo: 'mathcomp/mathcomp'
- version: '1.16.0-coq-8.17'
repo: 'mathcomp/mathcomp'
- version: '1.15.0-coq-8.16'
repo: 'mathcomp/mathcomp'
- version: '1.14.0-coq-8.15'
repo: 'mathcomp/mathcomp'
- version: '1.13.0-coq-8.15'
repo: 'mathcomp/mathcomp'
- version: '1.12.0-coq-8.14'
- version: '2.6.0-rocq-prover-9.0'
repo: 'mathcomp/mathcomp'

namespace: Autosubst
Expand Down
2 changes: 1 addition & 1 deletion theories/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ all: $(COQMAKEFILE)
+$(MAKE) -f $(COQMAKEFILE) all

$(COQMAKEFILE): Makefile $(VS)
coq_makefile -R $(LIB) Autosubst $(VS) -o $(COQMAKEFILE)
rocq makefile -R $(LIB) Autosubst $(VS) -o $(COQMAKEFILE)

install: $(COQMAKEFILE)
$(COQMAKE) install
Expand Down
Loading