diff --git a/.github/workflows/macos-aarch64.yml b/.github/workflows/macos-aarch64.yml index b88dda4ae..bbd926797 100644 --- a/.github/workflows/macos-aarch64.yml +++ b/.github/workflows/macos-aarch64.yml @@ -43,4 +43,4 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --features playtime,egui --target aarch64-apple-darwin \ No newline at end of file + args: --features egui --target aarch64-apple-darwin \ No newline at end of file diff --git a/.github/workflows/macos-x86_64.yml b/.github/workflows/macos-x86_64.yml index 04f9b0fe7..56b6df118 100644 --- a/.github/workflows/macos-x86_64.yml +++ b/.github/workflows/macos-x86_64.yml @@ -36,7 +36,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: check - args: --features playtime,egui + args: --features egui test: name: Test @@ -63,11 +63,11 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --features playtime,egui + args: --features egui # - name: Setup tmate session # uses: mxschmitt/action-tmate@v2 - name: cargo test uses: actions-rs/cargo@v1 with: command: test - args: --features playtime,egui -- --nocapture + args: --features egui -- --nocapture diff --git a/.github/workflows/windows-i686.yml b/.github/workflows/windows-i686.yml index c7c5b10e0..0dc53f71a 100644 --- a/.github/workflows/windows-i686.yml +++ b/.github/workflows/windows-i686.yml @@ -37,4 +37,4 @@ jobs: with: command: build # Prevent "LLVM ERROR: out of memory" - args: --features playtime,egui --profile dev-llvm-out-of-memory-fix --target i686-pc-windows-msvc \ No newline at end of file + args: --features egui --profile dev-llvm-out-of-memory-fix --target i686-pc-windows-msvc \ No newline at end of file diff --git a/.github/workflows/windows-x86_64.yml b/.github/workflows/windows-x86_64.yml index 49de447f0..c4e8d87be 100644 --- a/.github/workflows/windows-x86_64.yml +++ b/.github/workflows/windows-x86_64.yml @@ -35,7 +35,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: check - args: --features playtime,egui + args: --features egui test: name: Test @@ -59,9 +59,9 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --features playtime,egui + args: --features egui - name: cargo test uses: actions-rs/cargo@v1 with: command: test - args: --features playtime,egui -- --nocapture + args: --features egui -- --nocapture