From 0be95431c0bcdddaad514234f51b2bbe29beecb5 Mon Sep 17 00:00:00 2001 From: Zeeshan Ali Khan Date: Fri, 4 Aug 2023 18:39:23 +0200 Subject: [PATCH] =?UTF-8?q?Revert=20"=F0=9F=91=B7=20GH,CI:=20update=20the?= =?UTF-8?q?=20win32=20path=20list=20to=20cache"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit a78532eee6ffd628c2095e4bcde3a0e9970cb13c. Seems this commit broke the CI on Windows: https://github.com/dbus2/zbus/actions/runs/5763515467/job/15625520852?pr=428 --- .github/workflows/rust.yml | 36 ++++++++++++++++++++++++++++++------ 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 440a21cca..de624564e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -101,12 +101,36 @@ jobs: uses: actions/cache@v3 with: path: | - c:/ProgramData/chocolatey/bin/pkg-config.exe - c:/share/ - c:/lib/ - c:/bin/ - c:/var/ - key: ${{ runner.os }}-cache-2023-08-02.4 + c:/share/*dbus* + c:/lib/libexpat.lib + c:/bin/libexpat.dll + c:/bin/xmlwf.exe + c:/bin/*dbus* + c:/lib/*dbus* + c:/var/lib/*dbus* + c:/lib/*glib* + c:/lib/*gio* + c:/lib/*gobject* + c:/lib/*gmodule* + c:/lib/*gthread* + c:/lib/*gspawn* + c:/lib/*gresource* + c:/lib/*pcre* + c:/lib/*z* + c:/lib/*ffi* + c:/lib/*intl* + c:/bin/*glib* + c:/bin/*gio* + c:/bin/*gobject* + c:/bin/*gmodule* + c:/bin/*gthread* + c:/bin/*gspawn* + c:/bin/*gresource* + c:/bin/*pcre* + c:/bin/*z* + c:/bin/*ffi* + c:/bin/*intl* + key: ${{ runner.os }}-cache - name: Install pkg-config if: steps.cache-deps.outputs.cache-hit != 'true'