From 6897354a2c97543123e2f52d090446c94e8c1021 Mon Sep 17 00:00:00 2001 From: Cody Casterline Date: Wed, 24 Feb 2021 17:50:03 -0800 Subject: [PATCH] Disable Windows builds until Rollup is fixed. See: https://github.com/NfNitLoop/feoblog/issues/16 and: https://github.com/rollup/rollup/pull/3972 --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f124b47..49b4c50 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,8 +16,9 @@ jobs: matrix: os: - ubuntu-18.04 - - windows-latest - macos-latest + # Windows builds are broken, waiting on https://github.com/NfNitLoop/feoblog/issues/16 + # - windows-latest # Don't fail fast, if we have a failure on a specific matrix type # we want to know which ones: fail-fast: false @@ -40,8 +41,8 @@ jobs: working-directory: ./web-client run: npm run build - - name: Run tests - run: cargo test --verbose + - name: Run Rust Tests + run: cargo test - name: Build Rust run: cargo build --release