Bump the dev-dependencies group across 1 directory with 3 updates #15
Workflow file for this run
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
# SPDX-FileCopyrightText: Public Domain | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Native AOT Build | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
REUSE_compliance_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: REUSE Compliance Check | |
uses: fsfe/reuse-action@v3 | |
publish_aot: | |
strategy: | |
matrix: | |
target_runtime: [ x64, arm64 ] | |
build_config: [ Release, Debug ] | |
plugin_demo: [ minimal, gui, fsharp, vbnet ] | |
runs-on: windows-latest | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
PLUGIN_NS: 'Npp.DotNet.Plugin' | |
PLUGIN_NAME: 'Npp.DotNet.Plugin.Demo' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: > | |
8.0.x | |
7.0.x | |
- name: Restore projects | |
run: | | |
dotnet restore | |
dotnet restore test | |
- name: Run tests | |
if: matrix.build_config == 'Debug' && matrix.plugin_demo == 'minimal' | |
working-directory: ./test | |
run: | | |
dotnet msbuild /t:Build /p:SharedRuntimeIdentifier=win-${{ matrix.target_runtime }} | |
dotnet test | |
- name: Build demo plugins | |
run: | | |
dotnet build examples\${{ matrix.plugin_demo }} -f net8.0-windows -r win-${{ matrix.target_runtime }} -c ${{ matrix.build_config }} | |
dotnet publish examples\${{ matrix.plugin_demo }} -f net8.0-windows -r win-${{ matrix.target_runtime }} -c ${{ matrix.build_config }} | |
- name: Upload ${{ env.PLUGIN_NAME }}.${{ matrix.target_runtime }} | |
if: matrix.build_config == 'Release' && matrix.plugin_demo == 'minimal' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.PLUGIN_NAME }}.${{ matrix.target_runtime }} | |
path: examples/minimal/bin/Release/net8.0-windows/win-${{ matrix.target_runtime }}/native/${{ env.PLUGIN_NAME }}.dll | |
- name: Upload ${{ env.PLUGIN_NS }}.VBNet.Demo.${{ matrix.target_runtime }} | |
if: matrix.build_config == 'Release' && matrix.plugin_demo == 'vbnet' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.PLUGIN_NS }}.VBNet.Demo.${{ matrix.target_runtime }} | |
path: examples/vbnet/bin/Release/net8.0-windows/win-${{ matrix.target_runtime }}/native/${{ env.PLUGIN_NS }}.VBNet.Demo.dll | |
- name: Upload ${{ env.PLUGIN_NS }}.FSharp.Demo.${{ matrix.target_runtime }} | |
if: matrix.build_config == 'Release' && matrix.plugin_demo == 'fsharp' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.PLUGIN_NS }}.FSharp.Demo.${{ matrix.target_runtime }} | |
path: examples/fsharp/bin/Release/net8.0-windows/win-${{ matrix.target_runtime }}/native/${{ env.PLUGIN_NS }}.FSharp.Demo.dll |