Skip to content

Commit 675bd22

Browse files
rphmeierpepyakin
andauthored
Consolidate Sugondat workspace, fix pallet-blobs tests, add CI, fmt (thrumdev#29)
Co-authored-by: Sergei Shulepov <[email protected]>
1 parent 9d4a276 commit 675bd22

File tree

35 files changed

+2881
-7575
lines changed

35 files changed

+2881
-7575
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build-test-linux-stable
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
env:
8+
CARGO_TERM_COLOR: always
9+
10+
jobs:
11+
build_and_test:
12+
name: Sugondat - latest
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
toolchain:
17+
- stable
18+
steps:
19+
- uses: actions/checkout@v3
20+
- run: sudo apt-get install protobuf-compiler
21+
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
22+
- run: rustup target add wasm32-unknown-unknown
23+
- run: rustup install nightly && rustup target add wasm32-unknown-unknown --toolchain nightly
24+
- run: cargo build --verbose --all
25+
- run: cargo test --verbose --all

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
/zombienet
88
/demo/target
99
/demo/demo-rollup/demo_data
10+
/target

0 commit comments

Comments
 (0)