Skip to content

Commit 4d55f9b

Browse files
committed
ci
1 parent 5b8f834 commit 4d55f9b

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

flake.nix

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,26 @@
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
}

0 commit comments

Comments
 (0)