From d52bc53ae2de65fcf12010c9f15fb66ef4a3d5f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Thu, 2 Nov 2023 11:07:14 +0100 Subject: [PATCH] wip: tmp comment out --- .github/workflows/nightly-build.yml | 68 ++++++++++++++--------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index fe3e96045d..2f4f38e4b8 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -44,40 +44,40 @@ jobs: command: fmt args: --all -- --check - - name: Build binaries - uses: actions-rs/cargo@v1 - with: - command: build - args: --release --workspace - - - name: Build examples - uses: actions-rs/cargo@v1 - with: - command: build - args: --release --workspace --examples - - - name: Set debug to false - run: | - sed -i.bak 's/\[profile.dev\]/\[profile.dev\]\ndebug = false/' Cargo.toml - git diff - - - name: Run unit tests - uses: actions-rs/cargo@v1 - with: - command: test - args: --workspace - - - name: Run slow unit tests - uses: actions-rs/cargo@v1 - with: - command: test - args: --workspace -- --ignored - - - name: Clippy - uses: actions-rs/cargo@v1 - with: - command: clippy - args: --workspace --all-targets -- -D warnings + # - name: Build binaries + # uses: actions-rs/cargo@v1 + # with: + # command: build + # args: --release --workspace + # + # - name: Build examples + # uses: actions-rs/cargo@v1 + # with: + # command: build + # args: --release --workspace --examples + # + # - name: Set debug to false + # run: | + # sed -i.bak 's/\[profile.dev\]/\[profile.dev\]\ndebug = false/' Cargo.toml + # git diff + # + # - name: Run unit tests + # uses: actions-rs/cargo@v1 + # with: + # command: test + # args: --workspace + # + # - name: Run slow unit tests + # uses: actions-rs/cargo@v1 + # with: + # command: test + # args: --workspace -- --ignored + # + # - name: Clippy + # uses: actions-rs/cargo@v1 + # with: + # command: clippy + # args: --workspace --all-targets -- -D warnings notification: needs: build