Skip to content

Commit

Permalink
Add MSVC in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jchv committed Feb 18, 2024
1 parent 08d1a07 commit d03a2ee
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Watcom CI
on:
push:
branches: [ master ]
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: MSVC CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Build
run: msbuild.exe rugburn.sln "/p:Configuration=Release;Platform=Win32"
- name: Upload
uses: actions/upload-artifact@v2
with:
name: ijl15.dll
path: out/Win32/Release/ijl15.dll

0 comments on commit d03a2ee

Please sign in to comment.