From 38953a8f28a09a5c8b083187ff719e004e508eaa Mon Sep 17 00:00:00 2001 From: bitten2up Date: Mon, 19 Dec 2022 15:08:45 -0600 Subject: [PATCH 1/2] Fix ci.yml for submodules --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9190658..4a10eb4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,8 @@ jobs: with: toolchain: stable override: true + - name: Setup git submodules + run: git submodule init; git submodule update - 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' From 2bca25347acd4fa8883d57633cbfdfaf13c479a2 Mon Sep 17 00:00:00 2001 From: bitten2up Date: Mon, 19 Dec 2022 15:12:48 -0600 Subject: [PATCH 2/2] Forgot about the other functions --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a10eb4d..284a733c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,6 +50,8 @@ jobs: with: toolchain: stable override: true + - name: Setup git submodules + run: git submodule init; git submodule update - name: Install alsa and udev run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev - name: Run doc tests with all features (this also compiles README examples) @@ -72,6 +74,8 @@ jobs: toolchain: stable components: rustfmt, clippy override: true + - name: Setup git submodules + run: git submodule init; git submodule update - name: Install alsa and udev run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev - name: Run clippy