From 55283c1d4d7686f38f74a7b1fe090b3fc2863940 Mon Sep 17 00:00:00 2001 From: Riza Sulistyo Date: Fri, 3 Feb 2023 15:27:10 +0700 Subject: [PATCH] Change swigwin binary source to avoid failing to download (#3361) --- .github/workflows/ci-win.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index 8509ac288..47607b0d4 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -6,12 +6,12 @@ jobs: steps: - uses: actions/checkout@master - name: get swig - run: Invoke-WebRequest -Uri "http://nchc.dl.sourceforge.net/project/swig/swigwin/swigwin-4.0.1/swigwin-4.0.1.zip" -OutFile ".\swigwin.zip" + run: Invoke-WebRequest -Uri "https://github.com/pjsip/third_party_libs/raw/main/swigwin-4.1.1.zip" -OutFile ".\swigwin.zip" shell: powershell - name: expand swig run: | Expand-Archive -LiteralPath .\swigwin.zip -DestinationPath .\swigwin\; pwd - cd swigwin\swigwin-4.0.1 + cd swigwin\swigwin-4.1.1 Add-Content ..\..\swig_path.txt $pwd.Path shell: powershell - name: config site