5e2258c6de
* Resolve conflicts * Resolve conflicts * Update gitlab-build.sh (#7855) fix build ```version``` after https://github.com/paritytech/parity/pull/7723 * Resolve conflicts * Update gitlab-test.sh (#7883) * Update gitlab-test.sh https://github.com/paritytech/parity/issues/7871 * Update aura-test.sh * Backport master ci prs * Restore js-build * Bump stable to 1.8.10 * Bump stable to 1.8.10 * Make track stable
13 lines
424 B
Bash
Executable File
13 lines
424 B
Bash
Executable File
#!/bin/bash
|
|
set -e # fail on any error
|
|
set -u # treat unset variables as error
|
|
|
|
cargo build -j $(nproc) --release --features final $CARGOFLAGS
|
|
git clone https://github.com/paritytech/parity-import-tests
|
|
cp target/release/parity parity-import-tests/aura/parity
|
|
cd parity-import-tests/aura
|
|
echo "Start Aura test"
|
|
./parity import blocks.rlp --chain chain.json
|
|
./parity restore snap --chain chain.json
|
|
echo "Aura test complete"
|