From 459a88144b96ac3431d3818bf28a8266fe22109b Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Sun, 31 Dec 2023 00:04:47 +0900 Subject: [PATCH] =?UTF-8?q?KyleMayes/install-llvm-action=E3=82=92=E4=BD=BF?= =?UTF-8?q?=E3=81=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_and_deploy.yml | 8 ++++---- .github/workflows/test.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index 1d6ac586f..1e74d7532 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -208,11 +208,11 @@ jobs: git fetch private refs/tags/${{ env.PRODUCTION_REPOSITORY_TAG }} git -c user.name=dummy -c user.email=dummy@dummy.dummy merge FETCH_HEAD ) > /dev/null 2>&1 - - name: Install mingw-w64-x86_64-clang - if: matrix.os == 'windows-2019' - uses: msys2/setup-msys2@v2 + - if: matrix.os == 'windows-2019' + name: Install Clang + uses: KyleMayes/install-llvm-action@v1 with: - install: mingw-w64-x86_64-clang + version: "16.0" - name: Set up Python 3.8 if: matrix.whl_local_version uses: actions/setup-python@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98a04c1c8..53cf4457f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -125,11 +125,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - - name: Install mingw-w64-x86_64-clang - if: matrix.os == 'windows-2019' - uses: msys2/setup-msys2@v2 + - if: matrix.os == 'windows-2019' + name: Install Clang + uses: KyleMayes/install-llvm-action@v1 with: - install: mingw-w64-x86_64-clang + version: "16.0" - name: Set up Python 3.8 uses: actions/setup-python@v4 with: