Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Feat: Prepare update to v1.5 #339

Merged
merged 30 commits into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5c4aeb9
feat: change dependencies to v1.5 release
metricaez Feb 9, 2024
1e7331e
fix: remove contracts primitives and change to message queue
metricaez Feb 13, 2024
ee79bbd
fix: update syntax to derive_impl
metricaez Feb 13, 2024
c30d52f
fix: change dmp to message queue pallet on trappist
metricaez Feb 13, 2024
e154119
fix: add xcm queue dependencies and remove unused imports
metricaez Feb 13, 2024
3ea1c34
fix: fix dependencies and xcm config of trappist and stout
metricaez Feb 13, 2024
97c4c1b
fix: pallet contract primitive import fix
metricaez Feb 13, 2024
4c1955b
fix: identity fixes and contracts typo fix
metricaez Feb 13, 2024
a4cbfbb
fix: identity, contracts and xcm import fixes
metricaez Feb 13, 2024
137c412
fix: add xcm to pallet contracts and clean unused imports
metricaez Feb 13, 2024
46b4c74
fix: comment out outdated weifhts and change to substrate_frame_rpc_s…
metricaez Feb 14, 2024
cc2cdd4
fix: implement genesis_builder
metricaez Feb 14, 2024
fa55483
fix: change chain_spec into new syntax
metricaez Feb 14, 2024
d1c8ec4
fix: add inherent_benchmark and remove warnings
metricaez Feb 14, 2024
628f510
fix: initial balance overflow on json
metricaez Feb 14, 2024
44430fe
fix: remove reachable dest
metricaez Feb 14, 2024
74f713d
choir: cargo fmt
metricaez Feb 14, 2024
dd7583a
patch: disable test job
metricaez Feb 15, 2024
2a2adeb
fix docker publishing
Feb 15, 2024
9ec32ed
update base docker image
Feb 15, 2024
7b3b728
fix tests for 1.5.0
Feb 15, 2024
d8cac11
add rust setup step to CI
Feb 15, 2024
1ade5bf
fix compilation warnings
Feb 15, 2024
60f8431
remove comments from chainspec
Feb 15, 2024
e71b061
use live chain type for trappist_live_config
Feb 15, 2024
b837a38
Choir: v1.5 benchmarks and increment spec ver (#340)
metricaez Feb 15, 2024
0417a82
choir: re enable weights that became outdated on v1.5 bump
metricaez Feb 15, 2024
ce397a1
choir: re enable pallet_xcmp_queue weight
metricaez Feb 15, 2024
d61eafb
choir: clean dead code
metricaez Feb 15, 2024
8f78fa5
choir: cargo fmt
metricaez Feb 15, 2024
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
7 changes: 7 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.git
**/*.txt
**/*.md

# dotfiles in the repo root
/.*
target/
9 changes: 9 additions & 0 deletions .github/templates/setup-worker/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,12 @@ runs:
- name: Setup Ubuntu dependencies
shell: bash
run: sudo apt update && sudo apt install -y git clang curl libssl-dev llvm libudev-dev cmake protobuf-compiler

- name: Rust Setup
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: wasm32-unknown-unknown
override: true
components: rustfmt, clippy, rust-src
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ jobs:

- name: Run Trappist tests
run: |
cargo test --workspace --exclude stout-runtime --no-default-features --features trappist/trappist-runtime,std,runtime-benchmarks --locked --jobs 1
cargo test --workspace --exclude stout-runtime --no-default-features --features trappist/trappist-runtime,std,runtime-benchmarks --locked --jobs 1
3 changes: 3 additions & 0 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
release:
types: [published]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
push_to_registry:
name: Push Docker image to Docker Hub
Expand Down
Loading
Loading