fix: use yaml lists instead of objects in release.yml (#8182)

This commit is contained in:
Dan Cline
2024-05-09 13:00:42 -04:00
committed by GitHub
parent 4bbc8509d6
commit 87fee5e8be

View File

@ -31,34 +31,27 @@ jobs:
needs: extract-version
strategy:
matrix:
configs: [
{
target: x86_64-unknown-linux-gnu
os: ubuntu-20.04
profile: maxperf
},
{
target: aarch64-unknown-linux-gnu
os: ubuntu-20.04
profile: maxperf
},
{
target: x86_64-apple-darwin
os: macos-13
profile: maxperf
},
{
target: aarch64-apple-darwin
os: macos-14
profile: maxperf
},
{
target: x86_64-pc-windows-gnu
os: ubuntu-20.04
profile: maxperf
},
]
build: [{command: build, binary: reth}, {command: op-build, binary: op-reth}]
configs:
- target: x86_64-unknown-linux-gnu
os: ubuntu-20.04
profile: maxperf
- target: aarch64-unknown-linux-gnu
os: ubuntu-20.04
profile: maxperf
- target: x86_64-apple-darwin
os: macos-13
profile: maxperf
- target: aarch64-apple-darwin
os: macos-14
profile: maxperf
- target: x86_64-pc-windows-gnu
os: ubuntu-20.04
profile: maxperf
build:
- command: build
binary: reth
- command: op-build
binary: op-reth
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable