Skip to content

Commit

Permalink
update to 1.3.0 (#2644)
Browse files Browse the repository at this point in the history
* wip

* fix

* fix

* update

* fix

* fix

* fix

* fix

* update orml

* update action

* fix format
  • Loading branch information
xlc authored Nov 22, 2023
1 parent d2998be commit cbfbc92
Show file tree
Hide file tree
Showing 80 changed files with 14,526 additions and 15,204 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ jobs:
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.12
- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 18.x
- name: Run benchmarks
run: ${{steps.command.outputs.result}} > ${{runner.temp}}/out.txt
- name: Commit
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,10 @@ jobs:
tar -zxvf cargo-tarpaulin-x86_64-unknown-linux-musl.tar.gz -C $HOME/.cargo/bin
cargo tarpaulin -v --no-fail-fast --implicit-test-threads --workspace \
-e acala-inspect \
acala acala-cli e2e-tests acala-service \
acala acala-cli acala-service \
acala-primitives \
acala-rpc \
acala-runtime runtime-common runtime-integration-tests karura-runtime mandala-runtime \
test-service \
--exclude-files **/mock.rs **/weights.rs **/weights/*
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/extrinsic-ordering-check-from-bin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '14.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'

- name: Install Yarn
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/extrinsic-ordering-check-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:
if: ${{ env.CHAIN == '' || env.VERSION == '' || env.PREVIOUS_VERSION == '' }}
run: python .github/scripts/extrinsic_check_setup_env.py

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '14.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'

- name: Install Yarn
Expand Down
14 changes: 6 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
env:
CARGO_INCREMENTAL: 0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v3
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
env:
CARGO_INCREMENTAL: 0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v3
Expand All @@ -82,7 +82,7 @@ jobs:
env:
CARGO_INCREMENTAL: 0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v3
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
env:
CARGO_INCREMENTAL: 0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v3
Expand All @@ -129,12 +129,10 @@ jobs:
uses: dtolnay/rust-toolchain@nightly
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.13
- name: Run e2e tests
run: make test-e2e
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 18.x
- name: Run ts tests
run: |
npm install -g yarn
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@
__pycache__

ts-tests/cache/
ts-tests/.yarn
ts-tests/node_modules/
Loading

0 comments on commit cbfbc92

Please sign in to comment.