Skip to content

Commit

Permalink
Create build-book-01.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gfurtadoalmeida authored Apr 27, 2023
1 parent 2d8c6ee commit 8b11878
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build-book-01.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: build-book-01

on:
push:
branches: [ "master" ]
paths:
- 'book-01/**'
pull_request:
branches: [ "master" ]
paths:
- 'book-01/**'
workflow_dispatch:

env:
BUILD_AVX512: 0

jobs:
build:
runs-on: windows-2022

defaults:
run:
working-directory: ./book-01

steps:
- uses: actions/checkout@v3

- name: Add MSBuild to PATH
uses: microsoft/[email protected]
with:
msbuild-architecture: x64

- name: Build
# Add additional options to the MSBuild command line here.
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild 'book-01\**\*.sln' /m /p:Configuration=Release /p:platform=x64

0 comments on commit 8b11878

Please sign in to comment.