Skip to content

Commit 533d889

Browse files
committed
merge 0.11
2 parents 909d73b + 4769b38 commit 533d889

File tree

515 files changed

+12170
-6686
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

515 files changed

+12170
-6686
lines changed
File renamed without changes.

.github/workflows/build-test.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@ on:
66
branches:
77
- main
88
- dev
9+
- beta
910
jobs:
1011
build-tests:
1112
name: Test and Build
1213
strategy:
1314
matrix:
1415
platform:
15-
- ubuntu-latest
16+
- ubuntu-22.04
1617
# - macos-latest
1718
toolchain:
18-
- 1.59
19+
- 1.85
1920
runs-on: ${{ matrix.platform }}
2021
steps:
2122
- name: Checkout sources
@@ -32,9 +33,12 @@ jobs:
3233
uses: actions-rs/cargo@v1
3334
with:
3435
command: test
35-
args: --locked --all --release --features "json-tests" --verbose --no-run
36+
#args: deactivated JSON Tests, so we do not run out of quota on CI tests for merge intesive time. --locked --all --release --features "json-tests" --verbose --no-run
37+
args: --locked --all --release --verbose --no-run
3638
- name: Run tests for ${{ matrix.platform }}
3739
uses: actions-rs/cargo@v1
3840
with:
3941
command: test
40-
args: --locked --all --release --features "json-tests" --verbose
42+
#args: deactivated JSON Tests --locked --all --release --features "json-tests" --verbose
43+
args: --locked --all --release --verbose
44+

.github/workflows/build.yml

Lines changed: 0 additions & 285 deletions
This file was deleted.

.github/workflows/check.yml

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
check:
1111
name: Check
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Checkout sources
1515
uses: actions/checkout@main
@@ -18,20 +18,15 @@ jobs:
1818
- name: Install 1.59 toolchain
1919
uses: actions-rs/toolchain@v1
2020
with:
21-
toolchain: 1.59
21+
toolchain: 1.85
2222
profile: minimal
2323
override: true
24-
- name: Run cargo check 1/3
24+
- name: Run cargo check
2525
uses: actions-rs/cargo@v1
2626
with:
2727
command: check
28-
args: --locked --no-default-features --verbose
29-
- name: Run cargo check 2/3
30-
uses: actions-rs/cargo@v1
31-
with:
32-
command: check
33-
args: --locked --manifest-path crates/runtime/io/Cargo.toml --no-default-features --verbose
34-
- name: Run cargo check 3/3
28+
args: --locked --all --benches --verbose --tests
29+
- name: Run cargo check mio io
3530
uses: actions-rs/cargo@v1
3631
with:
3732
command: check
@@ -41,10 +36,7 @@ jobs:
4136
with:
4237
command: check
4338
args: --locked -p evmbin --verbose
44-
- name: Run cargo check benches
45-
uses: actions-rs/cargo@v1
46-
with:
47-
command: check
48-
args: --locked --all --benches --verbose
4939
- name: Run validate chainspecs
5040
run: ./scripts/actions/validate-chainspecs.sh
41+
args: --locked --all --benches --verbose --tests
42+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Compile
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
- dev
9+
jobs:
10+
check:
11+
name: Compile
12+
runs-on: ubuntu-22.04
13+
steps:
14+
- name: Checkout sources
15+
uses: actions/checkout@main
16+
with:
17+
submodules: true
18+
- name: Install rust toolchain
19+
uses: actions-rs/toolchain@v1
20+
with:
21+
toolchain: 1.85
22+
profile: minimal
23+
override: true
24+

0 commit comments

Comments
 (0)