Skip to content

Commit

Permalink
Add build_x64 job
Browse files Browse the repository at this point in the history
  • Loading branch information
sieukrem committed Oct 3, 2024
1 parent ec27d85 commit f30a3cd
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 79 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build Visual Studio Project

on: [push]

jobs:
build:
runs-on: windows-latest
strategy:
matrix:
platform: [x86, x64]
configuration: [Debug, Release]

steps:
- name: Checkout code
uses: actions/checkout@v4.2.0

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2

- name: Build with MSBuild
run: |
msbuild jN.vcxproj /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }}
- name: Upload artifacts
uses: actions/upload-artifact@v4.4.0
with:
name: Build artifacts ${{ matrix.platform }} ${{ matrix.configuration }}
path: |
${{ matrix.configuration }}/*.dll
${{ matrix.configuration }}/*.pdb
${{ matrix.platform }}/${{ matrix.configuration }}/*.dll
${{ matrix.platform }}/${{ matrix.configuration }}/*.pdb
retention-days: 3
79 changes: 0 additions & 79 deletions appveyor.yml

This file was deleted.

0 comments on commit f30a3cd

Please sign in to comment.