Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Move VM 1.5 (#173)
Browse files Browse the repository at this point in the history
* update: Move VM 1.5 (not ready, but building)

* user move builds

* fixed build

* root modules, gitignore

* build assets

* vm assets building

* runtime tests update (move)

* fix in gitignore

* benchmarks

* sp-mvm tests passing

* runtime tests

* it's building again

* update dove 1.5.1

* removed error comment

* reorder package modules

* update: to latest move vm

* update: sorting of assets, benches deps

* Transaction pause: genesis  (#174)

* genesis config for paused transactions

* tests for transaction pause

* transaction pause genesis config

* remove: parachain id, update: nox config

* update: README fixes

* fix: stdlib build

* remove: parachain id

* fix: launch config for polkadot-launch

* update: block root signers for scripts

* update: stdlibs, dove

* fix: transfer script

Co-authored-by: borispovod <boris@pontem.network>

* Nox (#169)

* set the naming

* change PalletId

* rustfmt

* fix tests partially

* fix pallet id

* nox as native token

* missed pont stdlib deps

* fix "native" naming

* update native

* fix currencies test mock

* rococo runtime

Co-authored-by: borispovod <boris@pontem.network>

* fixed and improved `primitives::currency::CurrencyId::NATIVE` usage;
also `static_assert` returned back.

* update vm to release branches

Co-authored-by: borispovod <boris@pontem.network>
Co-authored-by: Alexander Koz <a@koz.email>
  • Loading branch information
3 people committed Jan 27, 2022
1 parent b848f5b commit 87c64a0
Show file tree
Hide file tree
Showing 95 changed files with 1,662 additions and 1,096 deletions.
2 changes: 1 addition & 1 deletion .build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN rustup update nightly && \
rustup update stable

# add dove
ARG DOVE_VERSION=1.3.3
ARG DOVE_VERSION=1.5.5
RUN curl -sL --fail -o "/usr/local/bin/dove" "https://github.com/pontem-network/move-tools/releases/download/${DOVE_VERSION}/dove-${DOVE_VERSION}-linux-x86_64" && \
chmod +x /usr/local/bin/dove && \
dove -V
Expand Down
2 changes: 1 addition & 1 deletion .build/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y
# dove -V

# add dove
ARG DOVE_VERSION=1.3.3
ARG DOVE_VERSION=1.5.5
RUN curl -sL --fail -o "/usr/local/bin/dove" "https://github.com/pontem-network/move-tools/releases/download/${DOVE_VERSION}/dove-${DOVE_VERSION}-linux-x86_64" && \
chmod +x /usr/local/bin/dove && \
dove -V
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
cfg:
- os: self-hosted
grcov: grcov-linux-x86_64.tar.bz2
dove: 1.3.3
dove: 1.5.5

env:
SKIP_WASM_BUILD: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
- name: ubuntu
value: ubuntu-latest
dove:
- 1.3.3
- 1.5.5
defaults:
run:
shell: bash
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
matrix:
cfg:
- os: macos-latest
dove: 1.3.3
dove: 1.5.5
- os: ubuntu-latest
dove: 1.3.3
dove: 1.5.5
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
os:
- ubuntu-latest
dove:
- 1.3.3
- 1.5.5
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- macos-latest
- ubuntu-latest
dove:
- 1.3.3
- 1.5.5

steps:
- name: Checkout repository
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
os:
- ubuntu-latest
dove:
- 1.3.3
- 1.5.5
benchmark:
- groupsign
- sp-mvm
Expand Down
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@
*.log

artifacts/
/runtime/src/tests/assets/stdlib
/node/move/stdlib/
/pallets/sp-mvm/tests/assets/stdlib/
/runtime/src/tests/assets/pont-stdlib
/runtime/src/tests/assets/move-stdlib
/node/move/move-stdlib/
/node/move/pont-stdlib/
/pallets/sp-mvm/tests/assets/move-stdlib/
/pallets/sp-mvm/tests/assets/pont-stdlib/
/pallets/sp-mvm/tests/benchmark_assets/stdlib/

.direnv
Expand Down
Loading

0 comments on commit 87c64a0

Please sign in to comment.