File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ jobs:
1111 - uses : cachix/install-nix-action@v24
1212 with :
1313 github_access_token : ${{ secrets.GITHUB_TOKEN }}
14- - run : nix build .#coq -artifact
14+ - run : nix build .#rocq -artifact
1515
1616 build :
1717 runs-on : ubuntu-latest
1818 strategy :
1919 matrix :
2020 image :
21- - ' coqorg/coq:8.20 '
21+ - ' rocq/rocq-prover:9.2 '
2222 max-parallel : 4
2323 fail-fast : false
2424
Original file line number Diff line number Diff line change 99 let
1010 pkgs = nixpkgs . legacyPackages . ${ system } ;
1111 lib = pkgs . lib ;
12- coq = pkgs . rocq-core_9_2 ;
13- coqPkgs = pkgs . rocqPackages_9_2 ;
12+ rocq = pkgs . rocq-core_9_2 ;
13+ rocqPkgs = pkgs . rocqPackages_9_2 ;
1414 in {
1515 packages = {
16- coq -artifact = coqPkgs . mkCoqDerivation {
17- pname = "coq -artifact" ;
16+ rocq -artifact = rocqPkgs . mkRocqDerivation {
17+ pname = "rocq -artifact" ;
1818 version = "main" ;
1919 src = ./. ;
2020 buildPhase = "make" ;
2121 propagatedBuildInputs = [
22- coqPkgs . stdpp
23- coqPkgs . iris
22+ rocqPkgs . stdpp
23+ rocqPkgs . iris
2424 ] ;
2525 } ;
2626 } ;
2727 devShell = pkgs . mkShell {
2828 buildInputs = with pkgs ; [
29- coq
29+ rocq
3030 ] ;
31- inputsFrom = [ self . packages . ${ system } . coq -artifact ] ;
31+ inputsFrom = [ self . packages . ${ system } . rocq -artifact ] ;
3232 } ;
3333 } ) ;
3434}
You can’t perform that action at this time.
0 commit comments