Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
208 changes: 73 additions & 135 deletions .github/workflows/nix-action-coq-8.20.yml

Large diffs are not rendered by default.

261 changes: 73 additions & 188 deletions .github/workflows/nix-action-coq-9.0.yml

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions .nix/coq-overlays/trocq-hott-examples/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,5 @@ mkCoqDerivation {

propagatedBuildInputs = [
trocq.hott
mathcomp.ssreflect
mathcomp.algebra
];
}
4 changes: 2 additions & 2 deletions coq-trocq-hott-examples.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ description: """
Tests for applications of Trocq
"""

build: [make "-C examples/hott" "-j%{jobs}%"]
install: [make "-C examples/hott" "install"]
build: [make "-C" "examples/hott" "-j%{jobs}%"]
install: [make "-C" "examples/hott" "install"]
depends: [
"coq" {>= "8.20" & < "9.1"}
"coq-trocq-hott"
Expand Down
2 changes: 1 addition & 1 deletion coq-trocq-hott.opam
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ parametricity translation is fairly close to a pen-and-paper
sequent-style presentation."""

build: [make "-j%{jobs}%" "hott"]
install: [make "install" "-C hott"]
install: [make "-C" "hott" "install"]
depends: [
"coq" {>= "8.20" & < "9.1"}
"coq-elpi" {= "2.5.2"}
Expand Down
4 changes: 2 additions & 2 deletions coq-trocq-std-examples.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ description: """
Tests for applications of Trocq
"""

build: [make "-C examples/std" "-j%{jobs}%"]
install: [make "-C examples/std" "install"]
build: [make "-C" "examples/std" "-j%{jobs}%"]
install: [make "-C" "examples/std" "install"]
depends: [
"coq" {>= "8.20" & < "9.1"}
"coq-mathcomp-algebra"
Expand Down
2 changes: 1 addition & 1 deletion coq-trocq.opam
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ parametricity translation is fairly close to a pen-and-paper
sequent-style presentation."""

build: [make "-j%{jobs}%" "std"]
install: [make "-C std" "install"]
install: [make "-C" "std" "install"]
depends: [
"coq" {>= "8.20" & < "9.1"}
"coq-elpi" {= "2.5.2"}
Expand Down
2 changes: 1 addition & 1 deletion examples/N.v
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
(*****************************************************************************)

From Trocq Require Import Stdlib Common.
From mathcomp Require Import ssreflect.
Require Import ssreflect.

Set Universe Polymorphism.
Set Bullet Behavior "Strict Subproofs".
Expand Down