Skip to content

Commit

Permalink
Update dependency: deps/haskell-backend_release (#4419)
Browse files Browse the repository at this point in the history
Co-authored-by: devops <[email protected]>
Co-authored-by: Bruce Collie <[email protected]>
  • Loading branch information
3 people authored Jun 12, 2024
1 parent 5000678 commit 4cf894e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
cd haskell-backend/src/main/native/haskell-backend
git checkout ${hs_backend_version}
cd -
sed -i 's! haskell-backend.url = "github:runtimeverification/haskell-backend/[0-9a-f]*";! haskell-backend.url = "github:runtimeverification/haskell-backend/'${hs_backend_version}'";!' flake.nix
sed -i 's! haskell-backend.url = "github:runtimeverification/haskell-backend/.*";! haskell-backend.url = "github:runtimeverification/haskell-backend/'${hs_backend_version}'";!' flake.nix
if git add flake.nix haskell-backend/src/main/native/haskell-backend && git commit -m "flake.nix, haskell-backend/src/main/native/haskell-backend: update to version ${hs_backend_version}"; then
changed=true
fi
Expand Down
2 changes: 1 addition & 1 deletion deps/haskell-backend_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
abceb59fcbc47d1bc537ff797f806c8bb8649626
v0.1.8
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
description = "K Framework";
inputs = {
haskell-backend.url = "github:runtimeverification/haskell-backend/abceb59fcbc47d1bc537ff797f806c8bb8649626";
haskell-backend.url = "github:runtimeverification/haskell-backend/v0.1.8";
nixpkgs.follows = "llvm-backend/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
llvm-backend = {
Expand Down
2 changes: 1 addition & 1 deletion haskell-backend/src/main/native/haskell-backend
Submodule haskell-backend updated 71 files
+81 −0 .github/workflows/master.yml
+36 −100 .github/workflows/release.yml
+0 −29 .github/workflows/test.yml
+5 −5 booster/library/Booster/CLOptions.hs
+1 −1 booster/library/Booster/Definition/Attributes/Base.hs
+12 −2 booster/library/Booster/Definition/Attributes/Reader.hs
+8 −6 booster/library/Booster/JsonRpc.hs
+18 −8 booster/library/Booster/Log.hs
+74 −20 booster/library/Booster/Log/Context.hs
+7 −0 booster/library/Booster/Pattern/ApplyEquations.hs
+30 −21 booster/library/Booster/Pattern/Rewrite.hs
+10 −10 booster/library/Booster/SMT/Translate.hs
+36 −4 booster/library/Booster/Syntax/ParsedKore/Internalise.hs
+16 −31 booster/library/Booster/Util.hs
+2 −1 booster/package.yaml
+60,439 −0 booster/test/rpc-integration/resources/3934-smt.haskell.kore
+50 −0 booster/test/rpc-integration/resources/3934-smt.kompile
+55,580 −0 booster/test/rpc-integration/resources/3934-smt.llvm.kore
+235,198 −0 booster/test/rpc-integration/resources/get-model-subsorts.kore
+1 −0 booster/test/rpc-integration/test-3934-smt/response-001.json
+1 −0 booster/test/rpc-integration/test-3934-smt/response-002.json
+1 −0 booster/test/rpc-integration/test-3934-smt/response-003.json
+1 −0 booster/test/rpc-integration/test-3934-smt/response-004.json
+1 −0 booster/test/rpc-integration/test-3934-smt/response-005.json
+1 −0 booster/test/rpc-integration/test-3934-smt/response-006.json
+1 −0 booster/test/rpc-integration/test-3934-smt/response-007.json
+2 −0 booster/test/rpc-integration/test-3934-smt/response-008.json
+1 −0 booster/test/rpc-integration/test-3934-smt/state-001.send
+1 −0 booster/test/rpc-integration/test-3934-smt/state-002.send
+1 −0 booster/test/rpc-integration/test-3934-smt/state-003.send
+1 −0 booster/test/rpc-integration/test-3934-smt/state-004.send
+1 −0 booster/test/rpc-integration/test-3934-smt/state-005.send
+1 −0 booster/test/rpc-integration/test-3934-smt/state-006.send
+1 −0 booster/test/rpc-integration/test-3934-smt/state-007.send
+1 −0 booster/test/rpc-integration/test-3934-smt/state-008.send
+6 −0 booster/test/rpc-integration/test-get-model-subsorts/README.md
+1 −0 booster/test/rpc-integration/test-get-model-subsorts/response-sat.json
+7,710 −0 booster/test/rpc-integration/test-get-model-subsorts/state-sat.get-model
+4 −2 booster/test/rpc-integration/test-log-simplify-json/simplify-log.txt.golden
+3 −3 booster/tools/booster/Proxy.hs
+30 −28 booster/tools/booster/Server.hs
+43 −32 booster/tools/booster/Stats.hs
+3 −0 booster/unit-tests/Test/Booster/Fixture.hs
+1 −1 booster/unit-tests/Test/Booster/Pattern/ApplyEquations.hs
+11 −11 booster/unit-tests/Test/Booster/Pattern/Rewrite.hs
+1 −1 deps/k_release
+11 −19 dev-tools/booster-dev/Server.hs
+7 −5 dev-tools/count-aborts/Main.hs
+11 −8 dev-tools/count-aborts/Types.hs
+8 −18 dev-tools/kore-rpc-dev/Server.hs
+1 −1 dev-tools/package.yaml
+19 −8 docs/logging.md
+2 −1 kore-rpc-types/kore-rpc-types.cabal
+20 −2 kore-rpc-types/src/Kore/JsonRpc/Types.hs
+1 −1 kore/kore.cabal
+20 −18 kore/src/Kore/Equation/Application.hs
+3 −0 kore/src/Kore/Equation/DebugEquation.hs
+39 −43 kore/src/Kore/Log/BoosterAdaptor.hs
+25 −2 kore/src/Kore/Log/DebugAppliedRewriteRules.hs
+18 −2 kore/src/Kore/Log/DebugAttemptedRewriteRules.hs
+4 −0 kore/src/Kore/Log/DebugContext.hs
+20 −2 kore/src/Kore/Rewrite.hs
+7 −5 kore/src/Kore/Rewrite/Step.hs
+2 −1 kore/src/Kore/Unification/Procedure.hs
+4 −0 kore/src/Log/Entry.hs
+1 −0 package/version
+43 −0 package/version.sh
+1 −4 scripts/booster-integration-tests.sh
+2 −0 test/issue-3170/Makefile
+2 −2 test/map-symbolic/assignment-11-spec.k.out.golden
+2 −0 test/serialized-definition/Makefile

0 comments on commit 4cf894e

Please sign in to comment.