From 509181bf2a63d1d71bb075402fafd950794553e0 Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Thu, 5 Oct 2023 09:46:57 +0900 Subject: [PATCH] infra/window: Remove version fix of meson Version 0.58 find missing libraries and causes an error. (ex: libwebp 1.0). There is no need to fix the current version, so always use the latest version. --- .github/workflows/build_windows.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index 1c46b81c..78e3c1b7 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -17,7 +17,7 @@ jobs: - name: Install Packages run: | - pip install meson==0.58.0 ninja + pip install meson ninja - name: Build run: | @@ -38,7 +38,7 @@ jobs: - name: Install Packages run: | - pip install meson==0.58.0 ninja + pip install meson ninja - name: Build run: | @@ -59,7 +59,7 @@ jobs: - name: Install Packages run: | - pip install meson==0.58.0 ninja + pip install meson ninja - name: Build run: | @@ -70,4 +70,5 @@ jobs: - uses: actions/upload-artifact@v3 with: name: UnitTestReport - path: build/meson-logs/testlog.txt \ No newline at end of file + path: build/meson-logs/testlog.txt +