Skip to content

Commit d9d0310

Browse files
committed
Add a CI build definition
It is always good to have some automation to verify that things build. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 98d312b commit d9d0310

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/msbuild.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build SFX bundle
2+
3+
on: [push, pull_request]
4+
5+
env:
6+
# Path to the solution file relative to the root of the project.
7+
SOLUTION_FILE_PATH: CPP/7zip/Bundles/SFXSetup/SFXSetup.sln
8+
9+
jobs:
10+
build:
11+
runs-on: windows-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Add MSBuild to PATH
17+
uses: microsoft/[email protected]
18+
19+
- name: Build
20+
working-directory: ${{ github.workspace }}
21+
run: msbuild /m /p:Configuration=Release ${{ env.SOLUTION_FILE_PATH }}

0 commit comments

Comments
 (0)