mirror of
https://github.com/quantum5/winscap.git
synced 2025-04-24 05:31:58 -04:00
17 lines
398 B
YAML
17 lines
398 B
YAML
name: build
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Run nmake
|
|
run: |
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
|
nmake
|
|
shell: cmd
|
|
- uses: actions/upload-artifact@v1
|
|
with:
|
|
name: winscap
|
|
path: winscap.exe
|