Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/BeneficialCode/WinArk
Browse files Browse the repository at this point in the history
  • Loading branch information
BeneficialCode committed Dec 4, 2023
2 parents fe1c527 + 9cce875 commit a0d29bb
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: MSBuild

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .

# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release

permissions:
contents: read

jobs:
build_driver:
name: build AntiRootkit.sys
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
with: { submodules: recursive}
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
with: {vs-version: '[16.11,]'}

- name: Build kernel-mode
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild '/p:Configuration=${{env.BUILD_CONFIGURATION}};Platform=X64' ${{env.SOLUTION_FILE_PATH}} /t:Anti-Rootkit:Rebuild

0 comments on commit a0d29bb

Please sign in to comment.