Skip to content

Commit

Permalink
chore: update windows ci from cargo check -> cargo build (ethereu…
Browse files Browse the repository at this point in the history
  • Loading branch information
KolbyML committed Sep 15, 2024
1 parent 67ac2e3 commit 3b4576b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ jobs:
name: Build Trin workspace
command: cargo build --workspace
- save-sccache-cache
check-windows:
build-windows:
description: |
Check the crate on Windows (Check will tell us if we can build on Windows without the need to codegen (which is the time consuming part)).
Build's Trin workspace on Windows
executor:
name: win/default
size: xlarge
Expand All @@ -198,13 +198,13 @@ jobs:
steps:
- checkout
- run:
name: Check Trin workspace
name: Build Trin workspace
# We are running all these together because this version of circleci windows has an environment variable bug
# https://discuss.circleci.com/t/march-2022-beta-support-for-new-operating-system-for-windows-executors-windows-server-2022/43198/44
command: |
choco uninstall rust
choco install rust-ms llvm -y
cargo check --workspace
cargo build --workspace
test:
description: |
Run tests.
Expand Down Expand Up @@ -330,6 +330,6 @@ workflows:
- cargo-clippy
- build
- test
- check-windows
- build-windows
- utp-test
- check-workspace-crates
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ The Portal Network is still in the research phase, and this client is experiment

**Do not rely on Trin in a production setting.**

**NOTE: Unix-only**

Trin currently only runs on Unix-based platforms (Linux, macOS). We plan to eventually implement support for Windows, but until then do not expect any support for issues on Windows.

## How to use Trin

Expand Down

0 comments on commit 3b4576b

Please sign in to comment.