Skip to content

Commit f076f62

Browse files
committed
- appveyor.yml
- github action for CI build
1 parent 2efb1fc commit f076f62

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
9+
# Maintain dependencies for GitHub Actions
10+
- package-ecosystem: "github-actions"
11+
directory: "/"
12+
schedule:
13+
interval: "weekly"

.github/workflows/CI_build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI_build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: windows-2019
9+
10+
steps:
11+
- name: Checkout repo
12+
uses: actions/checkout@v3
13+
14+
- name: Add msbuild to PATH
15+
uses: microsoft/setup-msbuild@v1
16+
17+
- name: MSBuild of plugin dll
18+
working-directory: ./Demo Plugin/
19+
run: msbuild NppManagedPluginDemo.sln /m /verbosity:detailed

appveyor.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 0.95.0.{build}
2+
image: Visual Studio 2019
3+
4+
5+
build_script:
6+
- cd "%APPVEYOR_BUILD_FOLDER%"\Demo Plugin\
7+
- msbuild NppManagedPluginDemo.sln /m /verbosity:detailed /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"

0 commit comments

Comments
 (0)