From 7a734741000866a01588d1fa7e2b92952d3e0ef7 Mon Sep 17 00:00:00 2001 From: David Garske Date: Wed, 6 Dec 2023 15:24:34 -0800 Subject: [PATCH] Add CI test for Windows Visual Studio project. --- .github/workflows/win-test.yml | 51 ++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/win-test.yml diff --git a/.github/workflows/win-test.yml b/.github/workflows/win-test.yml new file mode 100644 index 00000000..fcca54da --- /dev/null +++ b/.github/workflows/win-test.yml @@ -0,0 +1,51 @@ +name: Windows Build Test + +on: + push: + branches: [ 'master', 'main', 'release/**' ] + pull_request: + branches: [ '*' ] + +jobs: + build: + + runs-on: windows-latest + + # This should be a safe limit for the tests to run. + timeout-minutes: 6 + + env: + # Path to the solution file relative to the root of the project. + SOLUTION_FILE_PATH: wolftpm\IDE\VisualStudio\wolftpm.sln + + # Configuration type to build. + # You can convert this to a build matrix if you need coverage of multiple configuration types. + # https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix + BUILD_CONFIGURATION: Debug + BUILD_PLATFORM: x64 + + steps: + #pull wolfTPM + - uses: actions/checkout@v3 + with: + repository: wolfssl/wolftpm + path: wolftpm + + #pull wolfssl + - uses: actions/checkout@v3 + with: + repository: wolfssl/wolfssl + path: wolfssl + + - name: Add MSBuild to PATH + uses: microsoft/setup-msbuild@v1 + + - name: Build + working-directory: ${{env.GITHUB_WORKSPACE}} + # Add additional options to the MSBuild command line here (like platform or verbosity level). + # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference + run: msbuild /m /p:PlatformToolset=v142 /p:Platform=${{env.BUILD_PLATFORM}} /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} + + - name: Run Test + working-directory: ${{env.GITHUB_WORKSPACE}} + run: Debug/x64/wrap_test.exe