Skip to content

Updates for v0.3

Updates for v0.3 #56

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
build:
runs-on: windows-2019
strategy:
max-parallel: 4
matrix:
build_configuration: [Release, Debug]
build_platform: [x64, x86]
steps:
- name: Checkout repo
uses: actions/checkout@v3.5.2
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.3.1
- name: MSBuild of solution
run: msbuild RandomValuesNppPlugin.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: RandomValuesNppPlugin\bin\${{ matrix.build_configuration }}-x64\RandomValuesNppPlugin.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: RandomValuesNppPlugin\bin\${{ matrix.build_configuration }}\RandomValuesNppPlugin.dll