Skip to content

Commit 5d8be3e

Browse files
committed
CI: Switch to xmake dev
Fixes a bug in XMake 2.9.1 see xmake-io/xmake#5025
1 parent 3b66f49 commit 5d8be3e

8 files changed

+13
-1
lines changed

.github/workflows/android-build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
uses: xmake-io/github-action-setup-xmake@v1
4545
with:
4646
actions-cache-folder: .xmake-cache-W${{ steps.cache_key.outputs.key }}
47+
xmake-version: branch@dev # fixes a bug in xmake 2.9.1
4748

4849
# Setup NDK
4950
- name: Download NDK

.github/workflows/coverage.yml

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
uses: xmake-io/github-action-setup-xmake@v1
6464
with:
6565
actions-cache-folder: .xmake-cache-W${{ steps.cache_key.outputs.key }}
66+
xmake-version: branch@dev # fixes a bug in xmake 2.9.1
6667

6768
# Update xmake repository (in order to have the file that will be cached)
6869
- name: Update xmake repository

.github/workflows/ios-build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
uses: xmake-io/github-action-setup-xmake@v1
4444
with:
4545
actions-cache-folder: .xmake-cache-W${{ steps.cache_key.outputs.key }}
46+
xmake-version: branch@dev # fixes a bug in xmake 2.9.1
4647

4748
# Update xmake repository (in order to have the file that will be cached)
4849
- name: Update xmake repository

.github/workflows/linux-build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
uses: xmake-io/github-action-setup-xmake@v1
5858
with:
5959
actions-cache-folder: .xmake-cache-W${{ steps.cache_key.outputs.key }}
60+
xmake-version: branch@dev # fixes a bug in xmake 2.9.1
6061

6162
# Update xmake repository (in order to have the file that will be cached)
6263
- name: Update xmake repository

.github/workflows/macos-build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
uses: xmake-io/github-action-setup-xmake@v1
4848
with:
4949
actions-cache-folder: .xmake-cache-W${{ steps.cache_key.outputs.key }}
50+
xmake-version: branch@dev # fixes a bug in xmake 2.9.1
5051

5152
# Update xmake repository (in order to have the file that will be cached)
5253
- name: Update xmake repository

.github/workflows/msys2-build.yml

+4
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ jobs:
5757
- name: Set xmake env
5858
run: echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/xmake-global" >> $GITHUB_ENV
5959

60+
# Update xmake to nightly (fixes a bug in xmake 2.9.1)
61+
- name: Update xmake to dev
62+
run: xmake update -s dev
63+
6064
# Update xmake repository (in order to have the file that will be cached)
6165
- name: Update xmake repository
6266
run: xmake repo --update

.github/workflows/wasm-build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
uses: xmake-io/github-action-setup-xmake@v1
4747
with:
4848
actions-cache-folder: .xmake-cache-W${{ steps.cache_key.outputs.key }}
49+
xmake-version: branch@dev # fixes a bug in xmake 2.9.1
4950

5051
# Update xmake repository (in order to have the file that will be cached)
5152
- name: Update xmake repository

.github/workflows/windows-build.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ jobs:
5252
# Install xmake
5353
- name: Setup xmake
5454
uses: xmake-io/github-action-setup-xmake@v1
55-
55+
with:
56+
xmake-version: branch@dev # fixes a bug in xmake 2.9.1
57+
5658
# Update xmake repository (in order to have the file that will be cached)
5759
- name: Update xmake repository
5860
run: xmake repo --update

0 commit comments

Comments
 (0)