Test newer GH Actions Dependencies

This commit is contained in:
Jack 2023-12-31 18:15:52 +08:00
parent 705cf9b4f3
commit 25850cd74b

View file

@ -27,12 +27,12 @@ jobs:
os: macos-latest os: macos-latest
arch: arm64 arch: arm64
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v4
- name: Clone submodules - name: Clone submodules
run: git submodule init && git submodule update run: git submodule init && git submodule update
- name: Compile ${{ matrix.prog }} - name: Compile ${{ matrix.prog }}
run: make PROJECT_PLATFORM_ARCH=${{ matrix.arch }} deps all run: make PROJECT_PLATFORM_ARCH=${{ matrix.arch }} deps all
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v4
with: with:
name: ${{ matrix.prog }}-${{ matrix.dist }} name: ${{ matrix.prog }}-${{ matrix.dist }}
path: ./bin/${{ matrix.prog }} path: ./bin/${{ matrix.prog }}
@ -55,14 +55,14 @@ jobs:
configuration: Release configuration: Release
build_path: Release build_path: Release
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v4
- name: Add msbuild to PATH - name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1 uses: microsoft/setup-msbuild@v1.3
- name: Clone submodules - name: Clone submodules
run: git submodule init && git submodule update run: git submodule init && git submodule update
- name: Compile ${{ matrix.prog }} - name: Compile ${{ matrix.prog }}
run: msbuild .\build\visualstudio\${{ matrix.prog }}.sln /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }} run: msbuild .\build\visualstudio\${{ matrix.prog }}.sln /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }}
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v4
with: with:
name: ${{ matrix.prog }}-${{ matrix.dist }} name: ${{ matrix.prog }}-${{ matrix.dist }}
path: .\build\visualstudio\${{ matrix.build_path }}\${{ matrix.prog }}.exe path: .\build\visualstudio\${{ matrix.build_path }}\${{ matrix.prog }}.exe