From fed3983dcf9d6bb7f2e1f4f0dd477f5d6bd755e5 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Thu, 30 Jun 2022 20:04:40 -0700 Subject: [PATCH] CI: Exclude plitki-ui-wayland One of its outdated transitive dependencies fails to build on beta: https://github.com/rust-lang/rust/issues/98750 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bacd65..a325611 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,13 +48,13 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: ${{ matrix.release-flag }} --workspace --exclude plitki-gtk --exclude plitki-gnome + args: ${{ matrix.release-flag }} --workspace --exclude plitki-gtk --exclude plitki-gnome --exclude plitki-ui-wayland - name: Test uses: actions-rs/cargo@v1 with: command: test - args: ${{ matrix.release-flag }} --workspace --exclude plitki-gtk --exclude plitki-gnome + args: ${{ matrix.release-flag }} --workspace --exclude plitki-gtk --exclude plitki-gnome --exclude plitki-ui-wayland clippy: strategy: @@ -85,7 +85,7 @@ jobs: uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - args: --workspace --exclude plitki-gtk --exclude plitki-gnome + args: --workspace --exclude plitki-gtk --exclude plitki-gnome --exclude plitki-ui-wayland rustfmt: runs-on: ubuntu-20.04