This commit is contained in:
2025-04-13 20:11:26 +02:00
parent a6983893ad
commit ca03d14c39
4 changed files with 13 additions and 13 deletions

View File

@@ -24,8 +24,8 @@ jobs:
matrix: matrix:
os: [windows-latest] os: [windows-latest]
arch: [x86_64] arch: [x86_64]
confs: arch: [x64]
- { mode: debug, archive: yes } mode: [debug]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}
@@ -40,7 +40,7 @@ jobs:
# Force xmake to a specific folder (for cache) # Force xmake to a specific folder (for cache)
- name: Set xmake env - 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 # Install xmake
- name: Setup xmake - name: Setup xmake
@@ -56,7 +56,7 @@ jobs:
# Fetch xmake dephash # Fetch xmake dephash
- name: Retrieve dependencies hash - name: Retrieve dependencies hash
id: dep_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 # Cache xmake dependencies
- name: Restore cached xmake dependencies - name: Restore cached xmake dependencies

View File

@@ -24,8 +24,8 @@ jobs:
matrix: matrix:
os: [windows-latest] os: [windows-latest]
arch: [x86_64] arch: [x86_64]
confs: arch: [x64]
- { mode: debug, archive: yes } mode: [debug]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}
@@ -40,7 +40,7 @@ jobs:
# Force xmake to a specific folder (for cache) # Force xmake to a specific folder (for cache)
- name: Set xmake env - 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 # Install xmake
- name: Setup xmake - name: Setup xmake
@@ -56,7 +56,7 @@ jobs:
# Fetch xmake dephash # Fetch xmake dephash
- name: Retrieve dependencies hash - name: Retrieve dependencies hash
id: dep_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 # Cache xmake dependencies
- name: Restore cached xmake dependencies - name: Restore cached xmake dependencies

View File

@@ -24,8 +24,8 @@ jobs:
matrix: matrix:
os: [windows-latest] os: [windows-latest]
arch: [x86_64] arch: [x86_64]
confs: arch: [x64]
- { mode: debug, archive: yes } mode: [debug]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}
@@ -40,7 +40,7 @@ jobs:
# Force xmake to a specific folder (for cache) # Force xmake to a specific folder (for cache)
- name: Set xmake env - 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 # Install xmake
- name: Setup xmake - name: Setup xmake
@@ -56,7 +56,7 @@ jobs:
# Fetch xmake dephash # Fetch xmake dephash
- name: Retrieve dependencies hash - name: Retrieve dependencies hash
id: dep_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 # Cache xmake dependencies
- name: Restore cached xmake dependencies - name: Restore cached xmake dependencies

View File

@@ -24,7 +24,7 @@ jobs:
matrix: matrix:
os: [windows-latest] os: [windows-latest]
arch: [x64] arch: [x64]
mode: [debug, release] mode: [debug]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}