mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
Test newer GH Actions Dependencies
This commit is contained in:
parent
705cf9b4f3
commit
25850cd74b
1 changed files with 5 additions and 5 deletions
10
.github/workflows/compile_main_branches.yml
vendored
10
.github/workflows/compile_main_branches.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue