Skip to content

Commit

Permalink
ci: Test EDR on Windows without static CRT (#502)
Browse files Browse the repository at this point in the history
* fix: Refer to the correct workflow name in edr-ci.yml

* ci: Test EDR on Windows without static CRT
  • Loading branch information
Xanewok authored Jun 7, 2024
1 parent 3e6d4da commit eb00b15
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/edr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- main
paths:
- ".github/workflows/edr.yml"
- ".github/workflows/edr-ci.yml"
- "rust-toolchain"
- "Cargo.lock"
- "Cargo.toml"
Expand All @@ -14,7 +14,7 @@ on:
branches:
- "**"
paths:
- ".github/workflows/edr.yml"
- ".github/workflows/edr-ci.yml"
- "rust-toolchain"
- "Cargo.lock"
- "Cargo.toml"
Expand Down Expand Up @@ -60,11 +60,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
include:
- RUSTFLAGS: "-Dwarnings"
- os: "windows-latest"
RUSTFLAGS: "-Dwarnings -Ctarget-feature=+crt-static"
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: actions/checkout@v3

Expand All @@ -86,7 +82,6 @@ jobs:
- name: Run cargo test
uses: actions-rs/cargo@v1
env:
RUSTFLAGS: ${{ matrix.RUSTFLAGS }}
ALCHEMY_URL: ${{ secrets.ALCHEMY_URL }}
INFURA_URL: ${{ secrets.INFURA_URL }}
with:
Expand All @@ -95,8 +90,6 @@ jobs:

- name: Doctests
uses: actions-rs/cargo@v1
env:
RUSTFLAGS: ${{ matrix.RUSTFLAGS }}
with:
command: test
args: --doc --workspace --features tracing
Expand All @@ -113,7 +106,6 @@ jobs:
# - name: Test with latest nextest release
# uses: actions-rs/cargo@v1
# env:
# RUSTFLAGS: ${{ matrix.RUSTFLAGS }}
# CARGO_INCREMENTAL: ${{ matrix.CARGO_INCREMENTAL }}
# ALCHEMY_URL: ${{ secrets.ALCHEMY_URL }}
# with:
Expand Down

0 comments on commit eb00b15

Please sign in to comment.