Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit 74a975f

Browse files
committed
Merge branch 'CO-430' into CO-372/TheGreatCleanup
2 parents 770ffad + cfa9537 commit 74a975f

8 files changed

+4
-19
lines changed

appveyor.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ before_test:
8080
# After some investigation, it was discovered that this was because 'rocksdb.dll' has to be located in this folder as well, or else the test executable doesn't work.
8181
- copy rocksdb.dll node
8282
- copy rocksdb.dll lib
83-
- copy rocksdb.dll wallet
8483
- copy rocksdb.dll wallet-new
8584

8685
# Install liblzma/xz
@@ -108,14 +107,13 @@ test_script:
108107
# - stack hpc report cardano-sl cardano-sl-txp cardano-sl-core cardano-sl-db cardano-sl-update cardano-sl-infra cardano-sl-lrc cardano-sl-ssc
109108
# Retry transient failures due to https://github.com/haskell/cabal/issues/4005
110109
# We intentionally don't build auxx here, because this build is for installer.
111-
- scripts\ci\appveyor-retry call stack --dump-logs install cardano-sl cardano-sl-tools cardano-sl-wallet cardano-sl-wallet-new
110+
- scripts\ci\appveyor-retry call stack --dump-logs install cardano-sl cardano-sl-tools cardano-sl-wallet-new
112111
-j 3
113112
--no-terminal
114113
--local-bin-path %WORK_DIR%
115114
--no-haddock-deps
116115
--flag cardano-sl-core:-asserts
117116
--flag cardano-sl-tools:for-installer
118-
--flag cardano-sl-wallet:for-installer
119117
--extra-include-dirs="C:\OpenSSL-Win64-v102\include"
120118
--extra-lib-dirs="C:\OpenSSL-Win64-v102"
121119
--extra-include-dirs="C:\xz_extracted\include"

docs/how-to/build-cardano-sl-and-daedalus-from-source-code.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ NOTE: the various other Cardano components can be obtained through other attribu
6565
- `cardano-explorer`, `cardano-explorer-swagger`, `cardano-explorer-mock`
6666
- `cardano-sl-tools`:
6767
- `cardano-analyzer`, `cardano-dht-keygen`, `cardano-genupdate`, `cardano-keygen`, `cardano-launcher`, `cardano-addr-convert`, `cardano-cli-docs`, `cardano-block-gen`, `cardano-post-mortem`
68-
- `cardano-sl-wallet-static`:
68+
- `cardano-sl-wallet-new-static`:
6969
- `cardano-node`, `cardano-swagger`
7070

7171
In general, for any given cabal `PACKAGE` provided by Cardano, there is a

faucet/cardano-sl-faucet.cabal

-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ library
2626
, cardano-sl-crypto
2727
, cardano-sl-chain
2828
, cardano-sl-util
29-
, cardano-sl-wallet
3029
, cardano-sl-wallet-new
3130
, connection
3231
, cryptonite
@@ -95,7 +94,6 @@ executable cardano-faucet
9594
, cardano-sl-infra
9695
, cardano-sl-chain
9796
, cardano-sl-util
98-
, cardano-sl-wallet
9997
, cardano-sl-wallet-new
10098
, ekg
10199
, ekg-core
@@ -132,7 +130,6 @@ test-suite faucet-test
132130
, bytestring
133131
, cardano-sl-core
134132
, cardano-sl-faucet
135-
, cardano-sl-wallet
136133
, cardano-sl-wallet-new
137134
, hspec
138135
, mtl

pkgs/default.nix

-6
Original file line numberDiff line numberDiff line change
@@ -16538,7 +16538,6 @@ license = stdenv.lib.licenses.mit;
1653816538
, cardano-sl-crypto
1653916539
, cardano-sl-infra
1654016540
, cardano-sl-util
16541-
, cardano-sl-wallet
1654216541
, cardano-sl-wallet-new
1654316542
, connection
1654416543
, cryptonite
@@ -16604,7 +16603,6 @@ cardano-sl-chain
1660416603
cardano-sl-core
1660516604
cardano-sl-crypto
1660616605
cardano-sl-util
16607-
cardano-sl-wallet
1660816606
cardano-sl-wallet-new
1660916607
connection
1661016608
cryptonite
@@ -16654,7 +16652,6 @@ cardano-sl-chain
1665416652
cardano-sl-core
1665516653
cardano-sl-infra
1665616654
cardano-sl-util
16657-
cardano-sl-wallet
1665816655
cardano-sl-wallet-new
1665916656
ekg
1666016657
ekg-core
@@ -16681,7 +16678,6 @@ aeson
1668116678
base
1668216679
bytestring
1668316680
cardano-sl-core
16684-
cardano-sl-wallet
1668516681
cardano-sl-wallet-new
1668616682
hspec
1668716683
mtl
@@ -17384,7 +17380,6 @@ license = stdenv.lib.licenses.mit;
1738417380
, cardano-sl-networking
1738517381
, cardano-sl-util
1738617382
, cardano-sl-util-test
17387-
, cardano-sl-wallet
1738817383
, cardano-sl-x509
1738917384
, containers
1739017385
, cpphs
@@ -17455,7 +17450,6 @@ cardano-sl-db
1745517450
cardano-sl-infra
1745617451
cardano-sl-networking
1745717452
cardano-sl-util
17458-
cardano-sl-wallet
1745917453
containers
1746017454
data-default
1746117455
directory

release.nix

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ let
6060
cardano-sl-tools = supportedSystems;
6161
cardano-sl-tools-post-mortem = supportedSystems;
6262
cardano-sl-util = supportedSystems;
63-
cardano-sl-wallet = supportedSystems;
6463
cardano-sl-wallet-new = supportedSystems;
6564
cardano-sl-x509 = supportedSystems;
6665
daedalus-bridge = supportedSystems;

scripts/bench/buildbench.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22

3-
stack build --flag cardano-sl-core:-asserts cardano-sl cardano-sl-auxx cardano-sl-wallet cardano-sl-explorer cardano-sl-tools
3+
stack build --flag cardano-sl-core:-asserts cardano-sl cardano-sl-auxx cardano-sl-explorer cardano-sl-tools

scripts/build/cardano-sl.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ set -o pipefail
4141
# * Pass --bench-mode to use the configuration used by modern benchmarks.
4242

4343
# Note: this list should be topologically sorted.
44-
projects="networking binary util crypto core db chain infra lib node client generator auxx tools explorer wallet wallet-new"
44+
projects="networking binary util crypto core db chain infra lib node client generator auxx tools explorer wallet-new"
4545

4646
# Returns name of a stack project to build, given the alias.
4747
function pkgNameToProject {
@@ -199,8 +199,6 @@ if [[ "$spec_prj" == "" ]]; then
199199
pkgName=$(pkgNameToProject "$prj")
200200
to_build="$to_build $pkgName"
201201
done
202-
elif [[ "$spec_prj" == "wallet" ]]; then
203-
to_build="cardano-sl-node cardano-sl-wallet"
204202
elif [[ "$spec_prj" == "wallet-new" ]]; then
205203
to_build="cardano-sl-node cardano-sl-wallet-new"
206204
elif [[ "$spec_prj" == "explorer" ]]; then

tools/cardano-sl-tools.cabal

-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,6 @@ library
376376
, cardano-sl-infra
377377
, cardano-sl-networking
378378
, cardano-sl-util
379-
, cardano-sl-wallet
380379
, containers
381380
, data-default
382381
, directory

0 commit comments

Comments
 (0)