Skip to content

Commit

Permalink
Merge pull request #37 from polytope-labs/seun/monorepo
Browse files Browse the repository at this point in the history
monorepo
  • Loading branch information
seunlanlege authored Oct 6, 2023
2 parents 9cc35f2 + c5834ca commit 3e02413
Show file tree
Hide file tree
Showing 86 changed files with 8,351 additions and 563 deletions.
53 changes: 52 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ on:
branches:
- main

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-C link-args=-Wl,--allow-multiple-definition"

jobs:
check:
Expand Down Expand Up @@ -37,7 +42,11 @@ jobs:
ssh-private-key: ${{ secrets.SSH_KEY }}

- name: check workspace
run: cargo +nightly check --all --benches --locked
run: |
cargo +nightly check --all --benches --locked
cargo +nightly check -p sync-committee-verifier --no-default-features --target=wasm32-unknown-unknown --locked
cargo +nightly check -p pallet-ismp --no-default-features --target=wasm32-unknown-unknown --locked
cargo +nightly check -p ismp-demo --no-default-features --target=wasm32-unknown-unknown --locked
check-runtime-wasm:
name: Check Runtime Wasm
Expand Down Expand Up @@ -74,3 +83,45 @@ jobs:

- name: Cargo fmt
run: cargo +nightly fmt --all --check

test:
name: Test Suite
runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/main'
env:
TUID: 123
steps:
- name: set UID env
run: |
echo $UID
echo "TUID=$UID" >> $GITHUB_ENV
- name: Checkout sources
uses: actions/checkout@master

- name: Install rust stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly

- name: Install protoc
run: |
sudo apt update
sudo apt install protobuf-compiler
- name: Run pallet-ismp unit tests
run: |
cargo +nightly test -p pallet-ismp --all-targets --all-features --verbose --locked
- name: Clone eth-pos-devnet repository
run: |
git clone https://github.com/polytope-labs/eth-pos-devnet.git
cd eth-pos-devnet
docker compose up -d
../scripts/wait_for_tcp_port_opening.sh localhost 3500
../scripts/wait_for_tcp_port_opening.sh localhost 8545
- name: Run all tests
run: |
cargo +nightly test -p sync-committee-prover -- --nocapture
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
**/polkadot-launch/rococo*.json
.cargo/
.DS_Store
**/zombienet/zombienet
**/zombienet/zombienet
/pallet-ismp/evm/solidity/out
/pallet-ismp/evm/solidity/cache
Loading

0 comments on commit 3e02413

Please sign in to comment.