diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3bceb2737df7..1832303829d9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,33 +13,33 @@ env: NIGHTLY_TOOLCHAIN: nightly jobs: - build: - strategy: - matrix: - os: [windows-latest, ubuntu-latest, macos-latest] - runs-on: ${{ matrix.os }} - timeout-minutes: 30 - steps: - - uses: actions/checkout@v4 - - uses: actions/cache@v4 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: ${{ runner.os }}-cargo-build-stable-${{ hashFiles('**/Cargo.toml') }} - - uses: dtolnay/rust-toolchain@stable - - name: Install alsa and udev - run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev - if: runner.os == 'linux' - - name: Build & run tests - # See tools/ci/src/main.rs for the commands this runs - run: cargo run -p ci -- test - env: - CARGO_INCREMENTAL: 0 - RUSTFLAGS: "-C debuginfo=0 -D warnings" + # build: + # strategy: + # matrix: + # os: [windows-latest, ubuntu-latest, macos-latest] + # runs-on: ${{ matrix.os }} + # timeout-minutes: 30 + # steps: + # - uses: actions/checkout@v4 + # - uses: actions/cache@v4 + # with: + # path: | + # ~/.cargo/bin/ + # ~/.cargo/registry/index/ + # ~/.cargo/registry/cache/ + # ~/.cargo/git/db/ + # target/ + # key: ${{ runner.os }}-cargo-build-stable-${{ hashFiles('**/Cargo.toml') }} + # - uses: dtolnay/rust-toolchain@stable + # - name: Install alsa and udev + # run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev + # if: runner.os == 'linux' + # - name: Build & run tests + # # See tools/ci/src/main.rs for the commands this runs + # run: cargo run -p ci -- test + # env: + # CARGO_INCREMENTAL: 0 + # RUSTFLAGS: "-C debuginfo=0 -D warnings" # ci: # runs-on: ubuntu-latest diff --git a/Cargo.toml b/Cargo.toml index 2fd9c081556d3..ba2ea26200ee4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,12 +17,12 @@ rust-version = "1.76.0" [workspace] exclude = [ - "benches", - "crates/bevy_ecs_compile_fail_tests", + "benches", + "crates/bevy_ecs_compile_fail_testsz", "crates/bevy_macros_compile_fail_tests", "crates/bevy_reflect_compile_fail_tests", ] -members = [ + members = [ "crates/*", "examples/mobile", "tools/ci",