Fix sccache server errors (#11675)

* actions

* add build scripts

* chmod +x

* remove clang env

* add ARM builds

* install LLVM for Windows

* check LLVM

* remove fi

* check platform

* fix LLVM install on windows

* diff cache

* remove unexpected token &&

* remove build directory cache from windows

* remove Show ENV

* fix cross and RUSTFLAGS

* final fix for ARM and Windows build

* typo

* fix PATH for artifacts

* sudo for install
set PATH . for artifacts.zip

* target names for artifacts

* platform names for artifacts

* remove ARM builds
PLATFORM for build scripts

* remove PLATFORM and change PATH for artifacts.zip

* change PATH for artifacts

* fix sccache

* set sccache env

* Update install-sccache.ps1

* Update install-sccache.ps1

* global env

* set global sccache env

* SCCACHE_CACHE_SIZE       "1G"
SCCACHE_IDLE_TIMEOUT     0

* Update build-windows.sh
This commit is contained in:
Denis S. Soldatov aka General-Beck 2020-05-04 18:32:40 +03:00 committed by GitHub
parent 748a8e384d
commit 28207a83ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 7 deletions

View File

@ -9,6 +9,9 @@ on:
jobs: jobs:
build-tests: build-tests:
name: Test and Build name: Test and Build
env:
SCCACHE_CACHE_SIZE: "1G"
SCCACHE_IDLE_TIMEOUT: 0
strategy: strategy:
matrix: matrix:
platform: platform:

View File

@ -10,6 +10,9 @@ on:
jobs: jobs:
build: build:
name: Build Release name: Build Release
env:
SCCACHE_CACHE_SIZE: "1G"
SCCACHE_IDLE_TIMEOUT: 0
strategy: strategy:
matrix: matrix:
platform: platform:

View File

@ -10,6 +10,9 @@ jobs:
check: check:
name: Check name: Check
runs-on: ubuntu-16.04 runs-on: ubuntu-16.04
env:
SCCACHE_CACHE_SIZE: "1G"
SCCACHE_IDLE_TIMEOUT: 0
steps: steps:
- name: Checkout sources - name: Checkout sources
uses: actions/checkout@master uses: actions/checkout@master

@ -1 +1 @@
Subproject commit 06acfb48aee71ecb57a9ca991cf0f57b630e3469 Subproject commit d4f86ecf4aa7c44a40bc0c972fd3e25d63ef5d92

View File

@ -1,9 +1,8 @@
#!/bin/bash #!/bin/bash
set -e # fail on any error set -e # fail on any error
set -u # treat unset variables as error set -u # treat unset variables as error
# NOTE: Enables the aes-ni instructions for RustCrypto dependency.
# NOTE: Enables the aes-ni instructions for RustCrypto dependency. # If you change this please remember to also update .cargo/config
# If you change this please remember to also update .cargo/config
export RUSTFLAGS=" -Ctarget-feature=+aes,+sse2,+ssse3 -Ctarget-feature=+crt-static -Clink-arg=-s" export RUSTFLAGS=" -Ctarget-feature=+aes,+sse2,+ssse3 -Ctarget-feature=+crt-static -Clink-arg=-s"
echo "_____ Build OpenEthereum and tools _____" echo "_____ Build OpenEthereum and tools _____"

View File

@ -1,7 +1,5 @@
#!/usr/bin/env pwsh #!/usr/bin/env pwsh
$os=$args[0] $os=$args[0]
$SCCACHE_CACHE_SIZE="1G"
$SCCACHE_IDLE_TIMEOUT=0
$version="0.2.12" $version="0.2.12"
echo "Current OS:" $os echo "Current OS:" $os
switch ($os){ switch ($os){