This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use parity-ethereum rev 02c54d42398f to fix build (#655)
* Use parity-ethereum rev 02c54d42398f to fix build * More lockfiles and new build artifacts * Update .gitlab-ci.yml (#633) it is necessary to test. You will probably have to create a cron-job for the nightly assembly of the master branch * Do not attempt to rustup if in CI. This is taken care of by the base (#621) image. * Improve docker image size with a 2 stages image (#463) * Improve docker image size with a 2 stages image * Minor doc updates * Fix and reduce size of the docker image * Fix paths in scripts * cargo --force to allow CI to build. (#599)
- Loading branch information
Showing
32 changed files
with
344 additions
and
268 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
doc | ||
target |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
stages: | ||
- test | ||
- build | ||
|
||
image: parity/rust:gitlab-ci | ||
|
||
variables: | ||
CI_SERVER_NAME: "GitLab CI" | ||
CARGO_HOME: "${CI_PROJECT_DIR}/cargo" | ||
|
||
BUILD_TARGET: ubuntu | ||
BUILD_ARCH: amd64 | ||
CARGO_TARGET: x86_64-unknown-linux-gnu | ||
|
||
cache: | ||
key: "${CI_JOB_NAME}" | ||
policy: pull | ||
paths: | ||
- ${CI_PROJECT_DIR}/target/ | ||
- ${CI_PROJECT_DIR}/cargo/ | ||
|
||
.releaseable_branches: # list of git refs for building GitLab artifacts (think "pre-release binaries") | ||
only: &releaseable_branches | ||
- master | ||
- stable | ||
- beta | ||
- tags | ||
- gitlab-next | ||
|
||
.publishable_branches: # list of git refs for publishing builds to the "production" locations | ||
only: &publishable_branches | ||
- nightly # Our nightly builds from schedule, on `master` | ||
- "v*" # Our version tags | ||
- gitlab-next | ||
|
||
.collect_artifacts: &collect_artifacts | ||
artifacts: | ||
name: "${CI_JOB_NAME}_${CI_COMMIT_REF_NAME}" | ||
when: on_success | ||
expire_in: 1 mos | ||
paths: | ||
- target/release/polkadot | ||
|
||
.determine_version: &determine_version | | ||
export VERSION=$(grep -m 1 "version =" Cargo.toml | awk '{print $3}' | tr -d '"' | tr -d "\n") | ||
echo "Version" $VERSION | ||
|
||
|
||
#### stage: test | ||
|
||
test:rust:stable: &test | ||
stage: test | ||
variables: | ||
RUST_TOOLCHAIN: stable | ||
TARGET: native | ||
script: | ||
- ./scripts/init.sh | ||
- export PATH="${CI_PROJECT_DIR}/cargo/bin/:$PATH" | ||
- ./scripts/build.sh | ||
- ./scripts/build-demos.sh | ||
- time cargo test --all --release | ||
tags: | ||
- rust-stable | ||
|
||
.optional_test: &optional_test | ||
<<: *test | ||
allow_failure: true | ||
only: | ||
- master | ||
|
||
#### stage: build | ||
|
||
build:linux:ubuntu:amd64: &build | ||
stage: build | ||
only: *releaseable_branches | ||
variables: | ||
CARGO_TARGET: x86_64-unknown-linux-gnu | ||
TARGET: native | ||
RUST_TOOLCHAIN: stable | ||
script: | ||
- ./scripts/init.sh | ||
- export PATH="${CI_PROJECT_DIR}/cargo/bin/:$PATH" | ||
- ./scripts/build.sh | ||
- ./scripts/build-demos.sh | ||
- cargo build --release | ||
<<: *collect_artifacts | ||
tags: | ||
- rust-stable | ||
allow_failure: true |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file modified
BIN
-59.3 KB
(78%)
demo/runtime/wasm/target/wasm32-unknown-unknown/release/demo_runtime.compact.wasm
Binary file not shown.
Binary file modified
BIN
+93 Bytes
(100%)
demo/runtime/wasm/target/wasm32-unknown-unknown/release/demo_runtime.wasm
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,26 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
pushd . | ||
|
||
# The following line ensure we run from the project root | ||
PROJECT_ROOT=`git rev-parse --show-toplevel` | ||
cd $PROJECT_ROOT | ||
|
||
# Find the current version from Cargo.toml | ||
VERSION=`grep "^version" ../Cargo.toml | egrep -o "([0-9\.]+)"` | ||
VERSION=`grep "^version" ./Cargo.toml | egrep -o "([0-9\.]+)"` | ||
GITUSER=chevdor | ||
GITREPO=polkadot | ||
|
||
# Build the image | ||
echo "Building ${GITREPO}:$VERSION docker image, hang on!" | ||
time docker build --build-arg PROFILE=release -t ${GITUSER}/${GITREPO}:$VERSION . | ||
echo "Building ${GITUSER}/${GITREPO}:latest docker image, hang on!" | ||
time docker build -f ./docker/Dockerfile --build-arg PROFILE=release -t ${GITUSER}/${GITREPO}:latest . | ||
|
||
# Show the list of available images for this repo | ||
echo "Image is ready" | ||
docker images | grep ${GITREPO} | ||
|
||
echo -e "\nIf you just built the latest, you may want to update your tag:" | ||
echo " $ docker tag ${GITUSER}/${GITREPO}:$VERSION ${GITUSER}/${GITREPO}:latest" | ||
echo -e "\nIf you just built version ${VERSION}, you may want to update your tag:" | ||
echo " $ docker tag ${GITUSER}/${GITREPO}:$VERSION ${GITUSER}/${GITREPO}:${VERSION}" | ||
|
||
popd |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.