Backport master ci prs

This commit is contained in:
Afri Schoedon 2018-02-14 12:39:08 +01:00 committed by 5chdn
parent 5e3e50c420
commit 857d7daf37
No known key found for this signature in database
GPG Key ID: 1A40871B597F5F80
4 changed files with 19 additions and 20 deletions

View File

@ -1,6 +1,5 @@
stages: stages:
- test - test
- js-build
- push-release - push-release
- build - build
variables: variables:
@ -18,9 +17,9 @@ linux-stable:
stage: build stage: build
image: parity/rust:gitlab-ci image: parity/rust:gitlab-ci
only: only:
- stable
- beta - beta
- tags - tags
- stable
- triggers - triggers
script: script:
- rustup default stable - rustup default stable
@ -36,9 +35,9 @@ linux-stable-debian:
stage: build stage: build
image: parity/rust-debian:gitlab-ci image: parity/rust-debian:gitlab-ci
only: only:
- stable
- beta - beta
- tags - tags
- stable
- triggers - triggers
script: script:
- export LIBSSL="libssl1.1 (>=1.1.0)" - export LIBSSL="libssl1.1 (>=1.1.0)"
@ -53,9 +52,9 @@ linux-centos:
stage: build stage: build
image: parity/rust-centos:gitlab-ci image: parity/rust-centos:gitlab-ci
only: only:
- stable
- beta - beta
- tags - tags
- stable
- triggers - triggers
script: script:
- scripts/gitlab-build.sh x86_64-unknown-centos-gnu x86_64-unknown-linux-gnu x86_64 gcc g++ centos - scripts/gitlab-build.sh x86_64-unknown-centos-gnu x86_64-unknown-linux-gnu x86_64 gcc g++ centos
@ -69,9 +68,9 @@ linux-i686:
stage: build stage: build
image: parity/rust-i686:gitlab-ci image: parity/rust-i686:gitlab-ci
only: only:
- stable
- beta - beta
- tags - tags
- stable
- triggers - triggers
script: script:
- scripts/gitlab-build.sh i686-unknown-linux-gnu i686-unknown-linux-gnu i386 gcc g++ ubuntu - scripts/gitlab-build.sh i686-unknown-linux-gnu i686-unknown-linux-gnu i386 gcc g++ ubuntu
@ -85,9 +84,9 @@ linux-armv7:
stage: build stage: build
image: parity/rust-armv7:gitlab-ci image: parity/rust-armv7:gitlab-ci
only: only:
- stable
- beta - beta
- tags - tags
- stable
- triggers - triggers
script: script:
- scripts/gitlab-build.sh armv7-unknown-linux-gnueabihf armv7-unknown-linux-gnueabihf armhf arm-linux-gnueabihf-gcc arm-linux-gnueabihf-g++ ubuntu - scripts/gitlab-build.sh armv7-unknown-linux-gnueabihf armv7-unknown-linux-gnueabihf armhf arm-linux-gnueabihf-gcc arm-linux-gnueabihf-g++ ubuntu
@ -101,9 +100,9 @@ linux-arm:
stage: build stage: build
image: parity/rust-arm:gitlab-ci image: parity/rust-arm:gitlab-ci
only: only:
- stable
- beta - beta
- tags - tags
- stable
- triggers - triggers
script: script:
- scripts/gitlab-build.sh arm-unknown-linux-gnueabihf arm-unknown-linux-gnueabihf armhf arm-linux-gnueabihf-gcc arm-linux-gnueabihf-g++ ubuntu - scripts/gitlab-build.sh arm-unknown-linux-gnueabihf arm-unknown-linux-gnueabihf armhf arm-linux-gnueabihf-gcc arm-linux-gnueabihf-g++ ubuntu
@ -117,9 +116,9 @@ linux-aarch64:
stage: build stage: build
image: parity/rust-arm64:gitlab-ci image: parity/rust-arm64:gitlab-ci
only: only:
- stable
- beta - beta
- tags - tags
- stable
- triggers - triggers
script: script:
- scripts/gitlab-build.sh aarch64-unknown-linux-gnu aarch64-unknown-linux-gnu arm64 aarch64-linux-gnu-gcc aarch64-linux-gnu-g++ ubuntu - scripts/gitlab-build.sh aarch64-unknown-linux-gnu aarch64-unknown-linux-gnu arm64 aarch64-linux-gnu-gcc aarch64-linux-gnu-g++ ubuntu
@ -131,7 +130,7 @@ linux-aarch64:
name: "aarch64-unknown-linux-gnu_parity" name: "aarch64-unknown-linux-gnu_parity"
linux-snap: linux-snap:
stage: build stage: build
image: parity/snapcraft:gitlab-ci image: snapcore/snapcraft:stable
only: only:
- stable - stable
- beta - beta
@ -143,15 +142,15 @@ linux-snap:
- rust-stable - rust-stable
artifacts: artifacts:
paths: paths:
- snap/parity.zip - parity.zip
name: "stable-x86_64-unknown-snap-gnu_parity" name: "stable-x86_64-unknown-snap-gnu_parity"
allow_failure: true allow_failure: true
darwin: darwin:
stage: build stage: build
only: only:
- stable
- beta - beta
- tags - tags
- stable
- triggers - triggers
script: script:
- scripts/gitlab-build.sh x86_64-apple-darwin x86_64-apple-darwin macos gcc g++ macos - scripts/gitlab-build.sh x86_64-apple-darwin x86_64-apple-darwin macos gcc g++ macos
@ -167,9 +166,9 @@ windows:
untracked: true untracked: true
stage: build stage: build
only: only:
- stable
- beta - beta
- tags - tags
- stable
- triggers - triggers
script: script:
- sh scripts/gitlab-build.sh x86_64-pc-windows-msvc x86_64-pc-windows-msvc installer "" "" windows - sh scripts/gitlab-build.sh x86_64-pc-windows-msvc x86_64-pc-windows-msvc installer "" "" windows
@ -182,14 +181,12 @@ windows:
docker-build: docker-build:
stage: build stage: build
only: only:
- stable
- beta
- tags - tags
- triggers - triggers
before_script: before_script:
- docker info - docker info
script: script:
- DOCKER_TAG=$CI_BUILD_REF_NAME - if [ "$CI_BUILD_REF_NAME" == "beta-release" ]; then DOCKER_TAG="latest"; else DOCKER_TAG=$CI_BUILD_REF_NAME; fi
- echo "Tag:" $DOCKER_TAG - echo "Tag:" $DOCKER_TAG
- docker login -u $Docker_Hub_User_Parity -p $Docker_Hub_Pass_Parity - docker login -u $Docker_Hub_User_Parity -p $Docker_Hub_Pass_Parity
- scripts/docker-build.sh $DOCKER_TAG - scripts/docker-build.sh $DOCKER_TAG

View File

@ -7,6 +7,6 @@ git clone https://github.com/paritytech/parity-import-tests
cp target/release/parity parity-import-tests/aura/parity cp target/release/parity parity-import-tests/aura/parity
cd parity-import-tests/aura cd parity-import-tests/aura
echo "Start Aura test" echo "Start Aura test"
parity import blocks.rlp --chain chain.json ./parity import blocks.rlp --chain chain.json
parity restore snap --chain chain.json ./parity restore snap --chain chain.json
echo "Aura test complete" echo "Aura test complete"

View File

@ -308,6 +308,7 @@ case $BUILD_PLATFORM in
x86_64-unknown-snap-gnu) x86_64-unknown-snap-gnu)
ARC="amd64" ARC="amd64"
EXT="snap" EXT="snap"
apt install -y expect zip
snapcraft clean snapcraft clean
echo "Prepare snapcraft.yaml for build on Gitlab CI in Docker image" echo "Prepare snapcraft.yaml for build on Gitlab CI in Docker image"
sed -i 's/git/'"$VER"'/g' snap/snapcraft.yaml sed -i 's/git/'"$VER"'/g' snap/snapcraft.yaml

View File

@ -25,9 +25,10 @@ rust_test () {
then echo "Skipping Rust tests since no Rust files modified."; then echo "Skipping Rust tests since no Rust files modified.";
else ./test.sh || exit $?; else ./test.sh || exit $?;
fi fi
if [[ "$CI_COMMIT_REF_NAME" == "nightly" ]]; # if [[ "$CI_COMMIT_REF_NAME" == "nightly" ]];
then sh scripts/aura-test.sh || exit $?; # ### @TODO re-enable fail after https://github.com/paritytech/parity-import-tests/issues/3
fi # then sh scripts/aura-test.sh; # || exit $?;
# fi
} }
js_test () { js_test () {
git submodule update --init --recursive git submodule update --init --recursive