From e46286f4318dc3628d712f49745e010968ecfd18 Mon Sep 17 00:00:00 2001 From: Kbz-8 Date: Sun, 13 Apr 2025 21:14:11 +0200 Subject: [PATCH] yes --- .github/workflows/d3d11-test-msys2.yml | 4 ++-- .github/workflows/d3d11-test-windows.yml | 10 ++++------ 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/d3d11-test-msys2.yml b/.github/workflows/d3d11-test-msys2.yml index 1b21af7..71c6e26 100644 --- a/.github/workflows/d3d11-test-msys2.yml +++ b/.github/workflows/d3d11-test-msys2.yml @@ -45,7 +45,7 @@ jobs: # Force xmake to a specific folder (for cache) - name: Set xmake env - run: echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/xmake-global" >> $GITHUB_ENV + run: echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/xmake-global" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append # Install xmake - name: Setup xmake @@ -61,7 +61,7 @@ jobs: # Fetch xmake dephash - name: Retrieve dependencies hash id: dep_hash - run: echo "hash=$(xmake l utils.ci.packageskey)" >> $GITHUB_OUTPUT + run: echo "hash=$(xmake l utils.ci.packageskey)" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append # Cache xmake dependencies - name: Restore cached xmake dependencies diff --git a/.github/workflows/d3d11-test-windows.yml b/.github/workflows/d3d11-test-windows.yml index 60e83eb..a7be0e4 100644 --- a/.github/workflows/d3d11-test-windows.yml +++ b/.github/workflows/d3d11-test-windows.yml @@ -16,11 +16,9 @@ jobs: strategy: fail-fast: false matrix: - msystem: [mingw64] os: [windows-latest] - arch: [x86_64] - confs: - - { mode: debug, archive: yes } + arch: [x64] + mode: [debug] runs-on: ${{ matrix.os }} if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} @@ -36,7 +34,7 @@ jobs: # Force xmake to a specific folder (for cache) - name: Set xmake env - run: echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/xmake-global" >> $GITHUB_ENV + run: echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/xmake-global" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append # Install xmake - name: Setup xmake @@ -52,7 +50,7 @@ jobs: # Fetch xmake dephash - name: Retrieve dependencies hash id: dep_hash - run: echo "hash=$(xmake l utils.ci.packageskey)" >> $GITHUB_OUTPUT + run: echo "hash=$(xmake l utils.ci.packageskey)" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append # Cache xmake dependencies - name: Restore cached xmake dependencies