From 84b05b8cfe9ef9fce3da308d24287585bb438789 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sun, 16 Jul 2023 02:55:46 +0800 Subject: [PATCH] ... --- .github/workflows/dylib.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dylib.yml b/.github/workflows/dylib.yml index 7c8bd190..60bdc2be 100644 --- a/.github/workflows/dylib.yml +++ b/.github/workflows/dylib.yml @@ -8,16 +8,23 @@ jobs: - uses: actions/checkout@v3 - uses: ilammy/msvc-dev-cmd@v1 - name: Install xmake + shell: powershell run: | - winget install xmake + Invoke-Expression (Invoke-Webrequest 'https://xmake.io/psget.text' -UseBasicParsing).Content xmake --version - - name: Compile + - name: Compile 01 shell: bash run: | mkdir -p output/windows/x86_64 cd dylib + - name: Compile 02 + shell: powershell + run: | xmake f -p windows -a x64 xmake + - name: Compile 03 + shell: bash + run: | cp build/windows/x64/release/test.dll ../output/windows/x86_64 - uses: actions/upload-artifact@v3 with: