diff --git a/.github/workflows/WTT.yml b/.github/workflows/WTT.yml new file mode 100644 index 0000000..f83dc3a --- /dev/null +++ b/.github/workflows/WTT.yml @@ -0,0 +1,49 @@ +name: WTT Build + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + strategy: + matrix: + configuration: [Debug, Release] + + runs-on: windows-latest + env: + Solution_Name: WTT\WTT.sln + WTT_Project_Directory: WTT\WTT + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + # Install the .NET Core workload + - name: Install .NET Core + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 6.0.x + + # Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild + - name: Setup MSBuild.exe + uses: microsoft/setup-msbuild@v1.0.2 + + # Restore the application to populate the obj folder with RuntimeIdentifiers + - name: Restore the application + run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration + env: + Configuration: ${{ matrix.configuration }} + + # Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: WTT Binaries - ${{ env.Configuration }} + path: ${{ env.WTT_Project_Directory }}\bin\$env:Configuration + env: + Configuration: ${{ matrix.configuration }}