mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-11 18:04:18 +00:00
Merge remote-tracking branch 'origin/deneb-free-blobs' into tree-states
This commit is contained in:
6
.github/workflows/docker.yml
vendored
6
.github/workflows/docker.yml
vendored
@@ -5,6 +5,7 @@ on:
|
||||
branches:
|
||||
- unstable
|
||||
- stable
|
||||
- deneb-free-blobs
|
||||
tags:
|
||||
- v*
|
||||
|
||||
@@ -40,6 +41,11 @@ jobs:
|
||||
run: |
|
||||
echo "VERSION=latest" >> $GITHUB_ENV
|
||||
echo "VERSION_SUFFIX=-unstable" >> $GITHUB_ENV
|
||||
- name: Extract version (if deneb)
|
||||
if: github.event.ref == 'refs/heads/deneb-free-blobs'
|
||||
run: |
|
||||
echo "VERSION=deneb" >> $GITHUB_ENV
|
||||
echo "VERSION_SUFFIX=" >> $GITHUB_ENV
|
||||
- name: Extract version (if tagged release)
|
||||
if: startsWith(github.event.ref, 'refs/tags')
|
||||
run: |
|
||||
|
||||
28
.github/workflows/test-suite.yml
vendored
28
.github/workflows/test-suite.yml
vendored
@@ -117,6 +117,16 @@ jobs:
|
||||
run: rustup update stable
|
||||
- name: Run operation_pool tests for all known forks
|
||||
run: make test-op-pool
|
||||
network-tests:
|
||||
name: network-tests
|
||||
runs-on: ubuntu-latest
|
||||
needs: cargo-fmt
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Get latest version of stable Rust
|
||||
run: rustup update stable
|
||||
- name: Run network tests for all known forks
|
||||
run: make test-network
|
||||
slasher-tests:
|
||||
name: slasher-tests
|
||||
runs-on: ubuntu-latest
|
||||
@@ -322,14 +332,16 @@ jobs:
|
||||
run: rustup update stable
|
||||
- name: Run cargo audit to identify known security vulnerabilities reported to the RustSec Advisory Database
|
||||
run: make audit
|
||||
cargo-vendor:
|
||||
name: cargo-vendor
|
||||
runs-on: ubuntu-latest
|
||||
needs: cargo-fmt
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Run cargo vendor to make sure dependencies can be vendored for packaging, reproducibility and archival purpose
|
||||
run: CARGO_HOME=$(readlink -f $HOME) make vendor
|
||||
# TODO(sean): re-enable this when we can figure it out with c-kzg
|
||||
# Issue: https://github.com/sigp/lighthouse/issues/4440
|
||||
# cargo-vendor:
|
||||
# name: cargo-vendor
|
||||
# runs-on: ubuntu-latest
|
||||
# needs: cargo-fmt
|
||||
# steps:
|
||||
# - uses: actions/checkout@v3
|
||||
# - name: Run cargo vendor to make sure dependencies can be vendored for packaging, reproducibility and archival purpose
|
||||
# run: CARGO_HOME=$(readlink -f $HOME) make vendor
|
||||
cargo-udeps:
|
||||
name: cargo-udeps
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Reference in New Issue
Block a user