-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump actions/upload-artifact from 3 to 4
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
- Loading branch information
1 parent
287d784
commit f0da244
Showing
1 changed file
with
41 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
name: Continuous Integration | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '*.md' | ||
- 'docs/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-2022 | ||
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
build_configuration: [Release, Debug] | ||
build_platform: [x64, x86] | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Add msbuild to PATH | ||
uses: microsoft/setup-msbuild@v1.3.1 | ||
|
||
- name: MSBuild of solution | ||
run: msbuild HugeFiles/HugeFiles.sln /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" /m /verbosity:minimal | ||
|
||
- name: Archive artifacts for x64 | ||
if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: plugin_dll_x64 | ||
path: HugeFiles\bin\${{ matrix.build_configuration }}-x64\HugeFiles.dll | ||
|
||
- name: Archive artifacts for x86 | ||
if: matrix.build_platform == 'x86' && matrix.build_configuration == 'Release' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: plugin_dll_x86 | ||
path: HugeFiles\bin\${{ matrix.build_configuration }}\HugeFiles.dll | ||
|
||
name: Continuous Integration | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '*.md' | ||
- 'docs/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-2022 | ||
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
build_configuration: [Release, Debug] | ||
build_platform: [x64, x86] | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Add msbuild to PATH | ||
uses: microsoft/setup-msbuild@v1.3.1 | ||
|
||
- name: MSBuild of solution | ||
run: msbuild HugeFiles/HugeFiles.sln /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" /m /verbosity:minimal | ||
|
||
- name: Archive artifacts for x64 | ||
if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: plugin_dll_x64 | ||
path: HugeFiles\bin\${{ matrix.build_configuration }}-x64\HugeFiles.dll | ||
|
||
- name: Archive artifacts for x86 | ||
if: matrix.build_platform == 'x86' && matrix.build_configuration == 'Release' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: plugin_dll_x86 | ||
path: HugeFiles\bin\${{ matrix.build_configuration }}\HugeFiles.dll | ||
|