Compare commits

...

7 Commits
main ... v3.1.0

Author SHA1 Message Date
Denis Granha 94a784bfe9
Add docker deployment for Github actions 2020-11-06 12:02:27 +01:00
draganrakita 2072341eca Bump to 3.1.0 2020-11-02 13:28:44 +01:00
Denis Granha 36d250a420 revert actions/cache to version 1.1.2 (#80) 2020-11-02 13:20:20 +01:00
rakita 6f7548f596 Use ubuntu-16.04 for glibc compatibility (#11888) (#73) 2020-11-02 13:20:07 +01:00
adria0.eth 1ccbe5cfd4 Update gitactions master->main (#72) 2020-11-02 13:19:11 +01:00
Denis Granha a8242ffef9 fix CD env param 2020-11-02 13:18:50 +01:00
Giacomo fb071acb09 Set AWS_REGION as a global env variable (#67) 2020-11-02 13:18:42 +01:00
7 changed files with 59 additions and 26 deletions

View File

@ -4,7 +4,7 @@ on:
pull_request:
push:
branches:
- master
- main
- stable
jobs:
build-tests:
@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
platform:
- ubuntu-20.04
- ubuntu-16.04
- macos-latest
- windows-latest
toolchain:
@ -23,7 +23,7 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout sources
uses: actions/checkout@master
uses: actions/checkout@main
with:
submodules: true
- name: Install toolchain
@ -33,35 +33,35 @@ jobs:
profile: minimal
override: true
- name: Cache cargo registry
uses: actions/cache@v2
uses: actions/cache@v1.1.2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-build-tests-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v2
uses: actions/cache@v1.1.2
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-git-build-tests-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v2
uses: actions/cache@v1.1.2
with:
path: target
key: ${{ runner.os }}-cargo-build-target-build-tests-${{ hashFiles('**/Cargo.lock') }}
- name: Cache sccache linux
if: matrix.platform == 'ubuntu-20.04'
uses: actions/cache@v2
if: matrix.platform == 'ubuntu-16.04'
uses: actions/cache@v1.1.2
with:
path: "/home/runner/.cache/sccache"
key: ${{ runner.os }}-sccache-build-tests-${{ hashFiles('**/Cargo.lock') }}
- name: Cache sccache MacOS
if: matrix.platform == 'macos-latest'
uses: actions/cache@v2
uses: actions/cache@v1.1.2
with:
path: "/Users/runner/Library/Caches/Mozilla.sccache"
key: ${{ runner.os }}-sccache-build-tests-${{ hashFiles('**/Cargo.lock') }}
- name: Cache sccache Windows
if: matrix.platform == 'windows-latest'
uses: actions/cache@v2
uses: actions/cache@v1.1.2
with:
path: "C:\\Users\\runneradmin\\AppData\\Local\\Mozilla\\sccache\\cache"
key: ${{ runner.os }}-sccache-build-tests-${{ hashFiles('**/Cargo.lock') }}

View File

@ -7,18 +7,21 @@ on:
tags:
- v*
# Global vars
env:
AWS_REGION: "us-east-1"
AWS_S3_ARTIFACTS_BUCKET: "openethereum-releases"
jobs:
build:
name: Build Release
env:
SCCACHE_CACHE_SIZE: "1G"
SCCACHE_IDLE_TIMEOUT: 0
AWS_S3_ARTIFACTS_BUCKET: "openethereum-releases"
AWS_REGION: "us-east-1"
strategy:
matrix:
platform:
- ubuntu-20.04
- ubuntu-16.04
- macos-latest
- windows-latest
toolchain:
@ -26,7 +29,7 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout sources
uses: actions/checkout@master
uses: actions/checkout@main
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
@ -49,7 +52,7 @@ jobs:
path: target
key: ${{ runner.os }}-cargo-build-target-build-${{ hashFiles('**/Cargo.lock') }}
- name: Cache sccache linux
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-16.04'
uses: actions/cache@v2
with:
path: "/home/runner/.cache/sccache"
@ -102,7 +105,7 @@ jobs:
- name: Upload Linux build
uses: actions/upload-artifact@v2
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-16.04'
with:
name: linux-artifacts
path: artifacts
@ -129,7 +132,7 @@ jobs:
zip-artifacts-creator:
name: Create zip artifacts
needs: build
runs-on: ubuntu-20.04
runs-on: ubuntu-16.04
steps:
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
@ -237,7 +240,7 @@ jobs:
run: |
# Deploy zip artifacts to S3 bucket to a directory whose name is the tagged release version.
# Deploy macos binary artifact (if required, add more `aws s3 cp` commands to deploy specific OS versions)
aws s3 cp macos-artifacts/openethereum s3://${{ env.AWS_S3_ARTIFACTS_BUCKET }}/${{ env.RELEASE_VERSION }}/macos/
aws s3 cp macos-artifacts/openethereum s3://${{ env.AWS_S3_ARTIFACTS_BUCKET }}/${{ env.RELEASE_VERSION }}/macos/ --region ${{ env.AWS_REGION }}
outputs:
linux-artifact: ${{ steps.create_zip_linux.outputs.LINUX_ARTIFACT }}
@ -250,7 +253,7 @@ jobs:
draft-release:
name: Draft Release
needs: zip-artifacts-creator
runs-on: ubuntu-20.04
runs-on: ubuntu-16.04
steps:
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}

View File

@ -4,18 +4,18 @@ on:
pull_request:
push:
branches:
- master
- main
- stable
jobs:
check:
name: Check
runs-on: ubuntu-20.04
runs-on: ubuntu-16.04
env:
SCCACHE_CACHE_SIZE: "1G"
SCCACHE_IDLE_TIMEOUT: 0
steps:
- name: Checkout sources
uses: actions/checkout@master
uses: actions/checkout@main
with:
submodules: true
- name: Install stable toolchain

30
.github/workflows/deploy-docker.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Docker Image Release
on:
push:
branches:
- main
tags:
- v*
jobs:
deploy-docker:
name: Build Release
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@master
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Deploy to docker hub
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: openethereum/openethereum
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
dockerfile: scripts/docker/alpine/Dockerfile
tag_names: true

4
Cargo.lock generated
View File

@ -2862,7 +2862,7 @@ checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
[[package]]
name = "openethereum"
version = "3.1.0-rc1"
version = "3.1.0"
dependencies = [
"ansi_term 0.10.2",
"atty",
@ -3227,7 +3227,7 @@ dependencies = [
[[package]]
name = "parity-version"
version = "3.1.0-rc1"
version = "3.1.0"
dependencies = [
"parity-bytes",
"rlp 0.3.0",

View File

@ -2,7 +2,7 @@
description = "OpenEthereum"
name = "openethereum"
# NOTE Make sure to update util/version/Cargo.toml as well
version = "3.1.0-rc1"
version = "3.1.0"
license = "GPL-3.0"
authors = [
"OpenEthereum developers",

View File

@ -1,7 +1,7 @@
[package]
name = "parity-version"
# NOTE: this value is used for OpenEthereum version string (via env CARGO_PKG_VERSION)
version = "3.1.0-rc1"
version = "3.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"