Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
**/._*
.idea
.vscode
polkadot.*
.DS_Store
.cargo-remote.toml
.gitignore
Expand Down
179 changes: 102 additions & 77 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "po
pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
pallet-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" }
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ RUN rm -rf /usr/share && \
USER bifrost
COPY --from=builder /app/target/production/bifrost /usr/local/bin
COPY ./node/service/res/asgard.json /spec
COPY ./node/service/res/bifrost.json /spec
COPY ./node/service/res/bifrost-kusama.json /spec/bifrost.json
COPY ./node/service/res/bifrost-kusama.json /spec
COPY ./node/service/res/bifrost-polkadot.json /spec

# checks
RUN ldd /usr/local/bin/bifrost && \
Expand Down
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ build-asgard-release: copy-genesis-config-release
build-bifrost-release: copy-genesis-config-release
cargo build -p node-cli --locked --features "with-bifrost-runtime" --release

.PHONY: build-bifrost-kusama-release
build-bifrost-kusama-release: copy-genesis-config-release
cargo build -p node-cli --locked --features "with-bifrost-kusama-runtime" --release

.PHONY: build-bifrost-polkadot-release
build-bifrost-polkadot-release: copy-genesis-config-release
cargo build -p node-cli --locked --features "with-bifrost-polkadot-runtime" --release

.PHONY: build-all-release
build-all-release: copy-genesis-config-release
cargo build -p node-cli --locked --features "with-all-runtime" --release
Expand Down
Loading