From 3dc87b2c3660b324713b83539c3917c033ef2986 Mon Sep 17 00:00:00 2001 From: Timothy Noel Date: Wed, 18 Sep 2024 11:48:10 -0400 Subject: [PATCH] updates --- .github/workflows/windows.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index e98f668..2460860 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -17,15 +17,21 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + + - name: Create cache directory + rum: mkdir "C:\choco" + - name: Set Chocolatey cache location - run: choco config set cacheLocation "C:\choco-cache" + run: choco config set cacheLocation "C:\choco" + - name: cache uses: actions/cache@v4 with: path: C:\choco key: C:\choco + - name: install xsltproc - run: choco install -y git --force --install-arguments="'/DIR=C:\choco\xsltproc'" + run: choco install -y xsltproc --force --install-arguments="'/DIR=C:\choco\xsltproc'" - name: checkout wireshark run: cd wireshark/build-scripts/ && C:\choco-cache\git\bin\git.exe clone -o upstream --branch wireshark-4.4.0 https://gitlab.com/wireshark/wireshark.git --depth=500