Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,6 @@ jobs:
DOCKER_CLI_EXPERIMENTAL: enabled
steps:
- 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
run: |
echo "${DOCKER_PASSWORD}" | docker login --username ${DOCKER_USERNAME} --password-stdin
Expand Down
55 changes: 1 addition & 54 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ name: test-suite
on:
push:
branches:
- unstable
- master
- staging
- trying
- 'pr/*'
pull_request:
env:
# Deny warnings in CI
RUSTFLAGS: "-D warnings"
PORTABLE: true
jobs:
cargo-fmt:
name: cargo-fmt
Expand All @@ -28,19 +27,6 @@ jobs:
needs: cargo-fmt
steps:
- 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
run: rustup update stable
- name: Install ganache-cli
Expand All @@ -53,19 +39,6 @@ jobs:
needs: cargo-fmt
steps:
- 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
run: rustup update stable
- name: Install ganache-cli
Expand Down Expand Up @@ -106,19 +79,6 @@ jobs:
needs: cargo-fmt
steps:
- 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
run: sudo npm install -g ganache-cli
- name: Run the beacon chain sim that starts from an eth1 contract
Expand All @@ -129,19 +89,6 @@ jobs:
needs: cargo-fmt
steps:
- 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
run: sudo npm install -g ganache-cli
- name: Run the beacon chain sim without an eth1 connection
Expand Down