From dd0cb8feb8f73620ee363b79e758cd12b53099d6 Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Tue, 29 Oct 2024 15:45:17 +0100 Subject: [PATCH] feat: Initial CI commit --- .github/workflows/build.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..0bdd598 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,36 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: MSBuild + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v4 + - uses: actions/checkout@v4 + with: + repository: r-wessel/ActiveLib + path: ActiveLib + + - name: Add MSBuild to PATH + uses: microsoft/setup-msbuild@v1.0.2 + + - name: Build + run: msbuild /m /p:Configuration=ReleaseAC27 SpeckleLib/SpeckleLib17.sln + + - name: Build + run: msbuild /m /p:Configuration=ReleaseAC27 SpeckleConnector/Connector.sln +