From 3b4576be965c77c89618a0111ba3db2c5ef623c6 Mon Sep 17 00:00:00 2001 From: Kolby Moroz Liebl <31669092+KolbyML@users.noreply.github.com> Date: Sun, 15 Sep 2024 09:11:11 -0600 Subject: [PATCH] chore: update windows ci from `cargo check` -> `cargo build` (#1452) --- .circleci/config.yml | 10 +++++----- README.md | 3 --- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e6e4cecf5..fac36dca3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -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. @@ -330,6 +330,6 @@ workflows: - cargo-clippy - build - test - - check-windows + - build-windows - utp-test - check-workspace-crates diff --git a/README.md b/README.md index 30600a238..c59ec844e 100644 --- a/README.md +++ b/README.md @@ -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