-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into rq/fix-lazy-loading
- Loading branch information
Showing
74 changed files
with
6,222 additions
and
8,601 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 |
---|---|---|
|
@@ -206,7 +206,7 @@ jobs: | |
with: | ||
node-version: 20.10.0 | ||
cache: "pnpm" | ||
cache-dependency-path: test/pnpm-lock.yaml | ||
cache-dependency-path: pnpm-lock.yaml | ||
- name: Run Eslint check | ||
run: | | ||
cd test | ||
|
@@ -500,7 +500,7 @@ jobs: | |
with: | ||
ref: ${{ needs.set-tags.outputs.git_ref }} | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected].5 | ||
uses: mozilla-actions/[email protected].6 | ||
- name: Setup Variables | ||
shell: bash | ||
run: | | ||
|
@@ -613,7 +613,7 @@ jobs: | |
with: | ||
node-version: 20.10.0 | ||
cache: "pnpm" | ||
cache-dependency-path: test/pnpm-lock.yaml | ||
cache-dependency-path: pnpm-lock.yaml | ||
- run: | | ||
mkdir -p target/release | ||
- name: "Download branch built node" | ||
|
@@ -739,6 +739,21 @@ jobs: | |
with: | ||
name: moonbeam | ||
path: target/release | ||
- name: Setup Moonbeam PolkadotJS types | ||
shell: bash | ||
run: | | ||
#### Preparing the legacy types | ||
cd moonbeam-types-bundle | ||
pnpm i | ||
pnpm build | ||
#### Preparing the typescript api | ||
cd ../typescript-api | ||
pnpm i | ||
pnpm build | ||
cd ../test | ||
pnpm add ../typescript-api | ||
- name: "Run lazy loading tests" | ||
run: | | ||
chmod uog+x target/release/moonbeam | ||
|
@@ -782,7 +797,7 @@ jobs: | |
with: | ||
node-version: 20.10.0 | ||
cache: "pnpm" | ||
cache-dependency-path: test/pnpm-lock.yaml | ||
cache-dependency-path: pnpm-lock.yaml | ||
- name: Create local folders | ||
run: | | ||
mkdir -p target/release/wbuild/${{ matrix.chain }}-runtime/ | ||
|
@@ -792,6 +807,21 @@ jobs: | |
with: | ||
name: runtimes | ||
path: target/release/wbuild/${{ matrix.chain }}-runtime/ | ||
- name: Setup Moonbeam PolkadotJS types | ||
shell: bash | ||
run: | | ||
#### Preparing the legacy types | ||
cd moonbeam-types-bundle | ||
pnpm i | ||
pnpm build | ||
#### Preparing the typescript api | ||
cd ../typescript-api | ||
pnpm i | ||
pnpm build | ||
cd ../test | ||
pnpm add ../typescript-api | ||
- name: "Install and run upgrade test" | ||
run: | | ||
cd test | ||
|
@@ -854,6 +884,21 @@ jobs: | |
docker create --name moonbeam_container $DOCKER_TAG bash | ||
docker cp moonbeam_container:moonbeam/moonbeam test/tmp/moonbeam_rt | ||
docker rm -f moonbeam_container | ||
- name: Setup Moonbeam PolkadotJS types | ||
shell: bash | ||
run: | | ||
#### Preparing the legacy types | ||
cd moonbeam-types-bundle | ||
pnpm i | ||
pnpm build | ||
#### Preparing the typescript api | ||
cd ../typescript-api | ||
pnpm i | ||
pnpm build | ||
cd ../test | ||
pnpm add ../typescript-api | ||
- name: Prepare Chainspecs | ||
run: | | ||
cd test | ||
|
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
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
Oops, something went wrong.