## Issue Addressed N/A ## Proposed Changes I didn't realize the `PORTABLE` env variable is only picked up by `install` in the `Makefile` so we are still getting `SIGILL`s: https://github.com/sigp/lighthouse/runs/1565004525?check_suite_focus=true ## Additional Info Co-authored-by: realbigsean <seananderson33@gmail.com>
This commit is contained in:
parent
3fcc517993
commit
ca08fc7831
13
.github/workflows/docker.yml
vendored
13
.github/workflows/docker.yml
vendored
@ -28,19 +28,6 @@ jobs:
|
|||||||
DOCKER_CLI_EXPERIMENTAL: enabled
|
DOCKER_CLI_EXPERIMENTAL: enabled
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Cache cargo directory
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry/index/
|
|
||||||
~/.cargo/registry/cache/
|
|
||||||
~/.cargo/git/db/
|
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
- name: Cache target aarch64 release directory
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: target/aarch64-unknown-linux-gnu/release
|
|
||||||
key: ${{ runner.os }}-target-aarch64-release-portable-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
- name: Dockerhub login
|
- name: Dockerhub login
|
||||||
run: |
|
run: |
|
||||||
echo "${DOCKER_PASSWORD}" | docker login --username ${DOCKER_USERNAME} --password-stdin
|
echo "${DOCKER_PASSWORD}" | docker login --username ${DOCKER_USERNAME} --password-stdin
|
||||||
|
55
.github/workflows/test-suite.yml
vendored
55
.github/workflows/test-suite.yml
vendored
@ -3,7 +3,7 @@ name: test-suite
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- unstable
|
- master
|
||||||
- staging
|
- staging
|
||||||
- trying
|
- trying
|
||||||
- 'pr/*'
|
- 'pr/*'
|
||||||
@ -11,7 +11,6 @@ on:
|
|||||||
env:
|
env:
|
||||||
# Deny warnings in CI
|
# Deny warnings in CI
|
||||||
RUSTFLAGS: "-D warnings"
|
RUSTFLAGS: "-D warnings"
|
||||||
PORTABLE: true
|
|
||||||
jobs:
|
jobs:
|
||||||
cargo-fmt:
|
cargo-fmt:
|
||||||
name: cargo-fmt
|
name: cargo-fmt
|
||||||
@ -28,19 +27,6 @@ jobs:
|
|||||||
needs: cargo-fmt
|
needs: cargo-fmt
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Cache cargo directory
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry/index/
|
|
||||||
~/.cargo/registry/cache/
|
|
||||||
~/.cargo/git/db/
|
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
- name: Cache target release directory
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: target/release
|
|
||||||
key: ${{ runner.os }}-target-release-portable-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
- name: Get latest version of stable Rust
|
- name: Get latest version of stable Rust
|
||||||
run: rustup update stable
|
run: rustup update stable
|
||||||
- name: Install ganache-cli
|
- name: Install ganache-cli
|
||||||
@ -53,19 +39,6 @@ jobs:
|
|||||||
needs: cargo-fmt
|
needs: cargo-fmt
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Cache cargo directory
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry/index/
|
|
||||||
~/.cargo/registry/cache/
|
|
||||||
~/.cargo/git/db/
|
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
- name: Cache target debug directory
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: target/debug
|
|
||||||
key: ${{ runner.os }}-target-debug-portable-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
- name: Get latest version of stable Rust
|
- name: Get latest version of stable Rust
|
||||||
run: rustup update stable
|
run: rustup update stable
|
||||||
- name: Install ganache-cli
|
- name: Install ganache-cli
|
||||||
@ -106,19 +79,6 @@ jobs:
|
|||||||
needs: cargo-fmt
|
needs: cargo-fmt
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Cache cargo directory
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry/index/
|
|
||||||
~/.cargo/registry/cache/
|
|
||||||
~/.cargo/git/db/
|
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
- name: Cache target release directory
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: target/release
|
|
||||||
key: ${{ runner.os }}-target-release-portable-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
- name: Install ganache-cli
|
- name: Install ganache-cli
|
||||||
run: sudo npm install -g ganache-cli
|
run: sudo npm install -g ganache-cli
|
||||||
- name: Run the beacon chain sim that starts from an eth1 contract
|
- name: Run the beacon chain sim that starts from an eth1 contract
|
||||||
@ -129,19 +89,6 @@ jobs:
|
|||||||
needs: cargo-fmt
|
needs: cargo-fmt
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Cache cargo directory
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry/index/
|
|
||||||
~/.cargo/registry/cache/
|
|
||||||
~/.cargo/git/db/
|
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
- name: Cache target release directory
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: target/release
|
|
||||||
key: ${{ runner.os }}-target-release-portable-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
- name: Install ganache-cli
|
- name: Install ganache-cli
|
||||||
run: sudo npm install -g ganache-cli
|
run: sudo npm install -g ganache-cli
|
||||||
- name: Run the beacon chain sim without an eth1 connection
|
- name: Run the beacon chain sim without an eth1 connection
|
||||||
|
Loading…
Reference in New Issue
Block a user