From f024be00c571a2b62a7822f851acd0078c6180c7 Mon Sep 17 00:00:00 2001 From: Ben Widawsky Date: Mon, 9 Oct 2023 12:59:15 -0700 Subject: [PATCH] CI: Add libwayland-dev deps --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d894a8..f78313e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - run: sudo apt-get install -y libwayland-dev - name: Setup Rust uses: actions-rs/toolchain@v1 with: @@ -63,6 +64,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - run: sudo apt-get install -y libwayland-dev - uses: actions-rs/toolchain@v1 with: toolchain: stable @@ -92,6 +94,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - run: sudo apt-get install -y libwayland-dev - uses: actions-rs/toolchain@v1 with: toolchain: nightly @@ -141,6 +144,8 @@ jobs: profile: minimal default: true override: true + - name: Install libwayland-dev + run: sudo apt-get install -y libdrm-dev libwayland-dev - name: Cargo cache uses: actions/cache@v2 with: