Skip to content

Commit 032e08c

Browse files
committed
Replace snapshot printer with scip CLI
Render snapshots via `scip snapshot` (pinned scip-code/scip flake input, added to the dev shell) instead of the in-repo ScipPrinters; regenerate Java and Kotlin goldens.
1 parent b8115b8 commit 032e08c

41 files changed

Lines changed: 1563 additions & 1462 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

flake.lock

Lines changed: 70 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,23 @@
66
nixpkgs = {
77
url = "github:NixOS/nixpkgs/nixos-25.11";
88
};
9+
scip = {
10+
url = "github:scip-code/scip";
11+
};
912
};
1013

1114
outputs =
1215
{
1316
self,
1417
flake-utils,
1518
nixpkgs,
19+
scip,
1620
}:
1721
flake-utils.lib.eachDefaultSystem (
1822
system:
1923
let
2024
pkgs = import nixpkgs { inherit system; };
25+
scipCli = scip.packages.${system}.default;
2126
mkDevShell =
2227
jdk:
2328
pkgs.mkShellNoCC {
@@ -32,6 +37,7 @@
3237
nodejs
3338
(sbt.override ({ jre = jdk; }))
3439
scalafmt
40+
scipCli
3541
yarn
3642
];
3743
};

0 commit comments

Comments
 (0)