-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix randomness benchmarks * fix vrf_output * fix try-runtime in pallet-migrations * export WeightInfo to allow different node template benchmarks (#4) * pallet-maintenance-mode: fix compilation with no default features (#3) * pallet-maintenance-mode: fix compilation with no default features * Remove leftover pallet_migrations files * make compile template files * install protoc * keep fixing stuff * change template name * update lock * rename to moonkit_tempalte_runtime --------- Co-authored-by: agus <[email protected]> Co-authored-by: Nisheeth Barthwal <[email protected]> Co-authored-by: girazoki <[email protected]>
- Loading branch information
1 parent
30264a4
commit 4b0317c
Showing
20 changed files
with
4,343 additions
and
586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -197,6 +197,8 @@ jobs: | |
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ needs.set-tags.outputs.git_ref }} | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v1 | ||
- name: Cargo build | ||
uses: ./.github/workflow-templates/cargo-build | ||
- name: Upload runtimes | ||
|
@@ -207,8 +209,8 @@ jobs: | |
- name: Upload binary | ||
uses: actions/[email protected] | ||
with: | ||
name: moonbeam | ||
path: build | ||
name: moonkit-template | ||
path: build/moonkit-template | ||
|
||
build-features: | ||
runs-on: | ||
|
@@ -219,6 +221,8 @@ jobs: | |
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ needs.set-tags.outputs.git_ref }} | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v1 | ||
- name: Cargo build | ||
uses: ./.github/workflow-templates/cargo-build | ||
with: | ||
|
@@ -227,7 +231,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
name: moonkit-template-features | ||
path: build | ||
path: build/moonkit-template | ||
|
||
rust-test: | ||
runs-on: | ||
|
@@ -242,6 +246,8 @@ jobs: | |
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ needs.set-tags.outputs.git_ref }} | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v1 | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup Variables | ||
|
Oops, something went wrong.