Skip to content

Commit 6ac3a00

Browse files
authored
feat: Import f10 vitss | NPG-000 (#588)
# Description Importing vitss from https://github.com/input-output-hk/vit-servicing-station/tree/catalyst-fund9 into the monorepo. Fixed all the dependencies to be local to the monorepo. Also deleted the vitss snapshot endpoint. The depencencies of the crates in cat-core have not been changed yet from vitss to the new vitss-f10, this will be done in a following PR ## Type of change Please delete options that are not relevant. - [x] Breaking change (fix or feature that would cause existing functionality to not work as expected) ## How Has This Been Tested? ## Checklist - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules
1 parent 83748f0 commit 6ac3a00

File tree

204 files changed

+14395
-849
lines changed

Some content is hidden

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

204 files changed

+14395
-849
lines changed

.github/workflows/rust.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127

128128
# We are excluding cat-dat-service and event-db because we are already running it with Earthly
129129
- name: Build and archive tests
130-
run: |
130+
run: |
131131
cargo nextest archive \
132132
--workspace \
133133
--exclude vitup \
@@ -138,6 +138,10 @@ jobs:
138138
--exclude vit-servicing-station-server \
139139
--exclude vit-servicing-station-tests \
140140
--exclude vit-servicing-station-lib \
141+
--exclude vit-servicing-station-cli-f10 \
142+
--exclude vit-servicing-station-server-f10 \
143+
--exclude vit-servicing-station-tests-f10 \
144+
--exclude vit-servicing-station-lib-f10 \
141145
--exclude cat-data-service \
142146
--exclude event-db \
143147
--exclude wallet-uniffi \
@@ -211,6 +215,8 @@ jobs:
211215
path: |
212216
target/debug/vit-servicing-station-cli
213217
target/debug/vit-servicing-station-server
218+
target/debug/vit-servicing-station-cli-f10
219+
target/debug/vit-servicing-station-server-f10
214220
target/debug/jcli
215221
target/debug/jormungandr
216222
target/debug/explorer
@@ -221,7 +227,7 @@ jobs:
221227

222228
- name: Install cargo-make
223229
run: cargo install --force cargo-make
224-
230+
225231
- name: Install refinery
226232
run: cargo install refinery_cli
227233

@@ -232,7 +238,7 @@ jobs:
232238
- name: Build external dependencies
233239
if: steps.deps-cache.outputs.cache-hit != 'true'
234240
run:
235-
cargo build -p vit-servicing-station-cli -p vit-servicing-station-server -p jcli -p jormungandr -p explorer
241+
cargo build -p vit-servicing-station-cli -p vit-servicing-station-server -p vit-servicing-station-cli-f10 -p vit-servicing-station-server-f10 -p jcli -p jormungandr -p explorer
236242

237243
- name: Setup Event DB
238244
env:
@@ -242,7 +248,7 @@ jobs:
242248
# We are excluding cat-dat-service and event-db because we are already running it with Earthly
243249
- name: Build and archive tests
244250
if: steps.archive-cache.outputs.cache-hit != 'true'
245-
run: |
251+
run: |
246252
cargo nextest archive \
247253
--workspace \
248254
--exclude vitup \
@@ -253,6 +259,10 @@ jobs:
253259
--exclude vit-servicing-station-server \
254260
--exclude vit-servicing-station-tests \
255261
--exclude vit-servicing-station-lib \
262+
--exclude vit-servicing-station-cli-f10 \
263+
--exclude vit-servicing-station-server-f10 \
264+
--exclude vit-servicing-station-tests-f10 \
265+
--exclude vit-servicing-station-lib-f10 \
256266
--exclude cat-data-service \
257267
--exclude event-db \
258268
--exclude wallet-uniffi \
@@ -388,6 +398,6 @@ jobs:
388398
with:
389399
toolchain: ${{env.RUST_LATEST_STABLE_VERSION}}
390400
components: rustfmt, clippy
391-
401+
392402
- run: rustup component add clippy
393403
- run: scripts/check-fmt.sh

0 commit comments

Comments
 (0)