Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into chore/upstream-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
frisitano committed Oct 8, 2024
2 parents 92e698b + 5e288b2 commit d49f54a
Show file tree
Hide file tree
Showing 157 changed files with 3,904 additions and 2,204 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Windows build

name: windows

on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:

jobs:
check-reth:
runs-on: ubuntu-20.04
timeout-minutes: 60

steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
target: x86_64-pc-windows-gnu
- uses: taiki-e/install-action@cross
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: mingw-w64
run: sudo apt-get install -y mingw-w64
- name: Check Reth
run: cargo check --target x86_64-pc-windows-gnu

check-op-reth:
runs-on: ubuntu-20.04
timeout-minutes: 60

steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
target: x86_64-pc-windows-gnu
- uses: taiki-e/install-action@cross
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: mingw-w64
run: sudo apt-get install -y mingw-w64
- name: Check OP-Reth
run: cargo check -p op-reth --features optimism --target x86_64-pc-windows-gnu
Loading

0 comments on commit d49f54a

Please sign in to comment.