diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac25d0cae..f797692ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -165,8 +165,8 @@ jobs: ~/extern/lib ~/extern/include ~/extern/sdk - # Change this key if we start caching more things - key: ${{ matrix.name }}-extern-v1 + # Change this key if we start caching something different + key: ${{ matrix.name }}-extern-v2 - name: Setup environment # These add to PATH-like variables, so they can always be set @@ -268,7 +268,8 @@ jobs: - name: Install Cargo Dinghy if: matrix.dinghy && steps.extern-cache.outputs.cache-hit != 'true' - run: cargo install cargo-dinghy --version=^0.4 --root=$HOME/extern --target=x86_64-apple-darwin + # Custom branch, see https://github.com/sonos/dinghy/pull/144 + run: cargo install cargo-dinghy --git https://github.com/madsmtm/dinghy --branch dont-test-proc-macro --bin cargo-dinghy --root=$HOME/extern --target=x86_64-apple-darwin - name: Run Cargo Dinghy if: matrix.dinghy