hotfix: point the polkadot-sdk to the forked repository to fix memory leak about litep2p on stable2409 branch
#543
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build-and-test | |
| on: | |
| push: | |
| branches: [ "main" , "dev"] | |
| pull_request: | |
| branches: [ "main" , "dev"] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v2 | |
| - uses: actions/checkout@v3 | |
| - name: install toolchain | |
| uses: 0xbillw/install-rust-substrate-action@main | |
| - name: Build | |
| run: cargo build -r --verbose | |
| # We don't run cargo test for now. | |
| # - name: Run tests | |
| # run: cargo test -r --verbose |