From 04cc56da2030baab1510a1c3c98ae5edaa464237 Mon Sep 17 00:00:00 2001 From: Jerome Humbert <djeedai@gmail.com> Date: Sat, 12 Feb 2022 11:01:49 +0000 Subject: [PATCH] Disable nightly CI and add README disclaimer Bevy 0.6.0 is broken for nightly, which breaks all `docs.rs` builds. Remove nightly CI and add a README warning until this is fixed in 0.6.1. --- .github/workflows/ci.yaml | 2 +- README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f702721..6a4461f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: build: strategy: matrix: - toolchain: [stable, nightly] + toolchain: [stable] os: [windows-latest, ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} steps: diff --git a/README.md b/README.md index 6efebcd..f642c75 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ Tweening animation plugin for the Bevy game engine. +âš _Bevy 0.6.0 does not build with the `nightly` toolchain. This breaks `docs.rs` builds. A fix is expected for 0.6.1._ + ## Features - [x] Animate any field of any component or asset, including custom ones. -- GitLab