Skip to content

bump substrate to polkadot-v0.9.2. + add GA + re-add branch ids #116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 23 commits into from
May 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f6c7533
reintroduce branch id for substrate dependencies
clangenb Apr 22, 2021
2eea563
[client-keystore] add Cargo.lock
clangenb Apr 22, 2021
d60b1d9
bump substrate: dependency resolution works. Build not yet.
clangenb May 24, 2021
12638f7
[api-client] build successful
clangenb May 24, 2021
0e4f7f3
[keystore] bump substrate
clangenb May 24, 2021
97ad8ea
update to new substrate commit
haerdib May 7, 2021
abe2238
[keystore] update code for new substrate rev. Pack methods added in t…
clangenb May 24, 2021
1f77d4f
[test_no_std] bump substrate. No std currently broken scale_codec pul…
clangenb May 24, 2021
2d4b6ab
[api-client-tutorial] bump substrate, add Cargo.lock
clangenb May 24, 2021
3b72921
fix no_std build
clangenb May 24, 2021
d84eb30
bump rust-toolchain 2021-05-20
clangenb May 24, 2021
40b8608
[example] comment out contract deps
clangenb May 24, 2021
808a3cc
fix clippy warnings
clangenb May 24, 2021
ce56452
upate other deps
clangenb May 24, 2021
206975f
rename GA
clangenb May 24, 2021
fcedce1
add encointer for of `substrate-api-client-test-node` as dev-dep to t…
clangenb May 24, 2021
9af72e3
fix some clippy warnings
clangenb May 24, 2021
1309ac8
[GA] add wasm target for clippy
clangenb May 25, 2021
3225c4d
[GA] fix wrong step name
clangenb May 25, 2021
151660f
move test-node source back to scs
clangenb May 25, 2021
df05012
[keystore] add two clippy ignores
clangenb May 25, 2021
2848d2b
bump evething to v0.6.0
clangenb May 25, 2021
d015809
[keystore] re-add accidentally deleted tests
clangenb May 25, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions .github/workflows/build-test-clippy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: Build & Test & Clippy

on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: init-rust-target
run: rustup target add wasm32-unknown-unknown
- name: api-client
run: cargo build
- name: keystore
run: |
cd client-keystore
cargo build
- name: examples
run: cargo build --examples
- name: test_no_std
run: |
cd test_no_std
cargo build
- name: tutorial
run: |
cd tutorials/api-client-tutorial
cargo build

unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: init-rust-target
run: rustup target add wasm32-unknown-unknown
- name: api-client
run: cargo test
- name: keystore
run: |
cd client-keystore
cargo test

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: init-rust
run: |
rustup target add wasm32-unknown-unknown
rustup component add clippy
- name: api-client
run: cargo clippy
- name: keystore
run: |
cd client-keystore
cargo clippy
- name: examples
run: cargo clippy --examples
- name: test_no_std
run: |
cd test_no_std
cargo clippy
- name: tutorial
run: |
cd tutorials/api-client-tutorial
cargo clippy
Loading