Skip to content

Commit fe217f3

Browse files
Remove forc-call package entry to unblock CI (#192)
Regression introduced in #191 packaged `forc-call` as a standalone crate, but the Sway repo only ships that binary inside forc-client. This PR removes forc-call as it's already included in forc-client. --------- Co-authored-by: GitHub Action <action@github.com>
1 parent d4b24b9 commit fe217f3

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

filters.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ with pkgs.lib; [
1515
(m: m.pname != "forc-lsp" || versionAtLeast m.version "0.19.0")
1616
(m: m.pname != "forc-tx" || versionAtLeast m.version "0.33.1")
1717
(m: m.pname != "forc-wallet" || versionAtLeast m.version "0.1.0")
18-
(m: m.pname != "forc-call" || versionAtLeast m.version "0.69.1")
1918
(m: m.pname != "forc-migrate" || versionAtLeast m.version "0.69.1")
2019
(m: m.pname != "forc-node" || versionAtLeast m.version "0.69.1")
2120
(m: m.pname != "forc-publish" || versionAtLeast m.version "0.69.1")

flake.lock

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

flake.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,6 @@
249249
forc-lsp-nightly
250250
forc-tx-nightly
251251
]
252-
++ (pkgs.lib.optional (fuelpkgs ? forc-call-nightly) forc-call-nightly)
253252
++ (pkgs.lib.optional (fuelpkgs ? forc-migrate-nightly) forc-migrate-nightly)
254253
++ (pkgs.lib.optional (fuelpkgs ? forc-node-nightly) forc-node-nightly)
255254
++ (pkgs.lib.optional (fuelpkgs ? forc-publish-nightly) forc-publish-nightly);

patches.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"forc-fmt"
1111
"forc-lsp"
1212
"forc-tx"
13-
"forc-call"
1413
"forc-migrate"
1514
"forc-node"
1615
"forc-publish"
@@ -103,6 +102,11 @@ in [
103102
pkgs.perl # for openssl-sys
104103
pkgs.pkg-config # for openssl-sys
105104
];
105+
buildInputs =
106+
(m.buildInputs or [])
107+
++ [
108+
pkgs.openssl
109+
];
106110
};
107111
}
108112

0 commit comments

Comments
 (0)