Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 32 additions & 21 deletions .github/workflows/build_sln.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,38 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [main]

jobs:
build:
runs-on: [windows-latest]
build-and-test:
name: Tekla ${{ matrix.tekla }}
runs-on: windows-latest

strategy:
fail-fast: false # keep other versions running if one fails
matrix:
tekla: [2020, 2021, 2022, 2023, 2024, 2025]

steps:
- uses: actions/checkout@v3

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1

- name: Setup NuGet
uses: NuGet/setup-nuget@v1.2.0
with:
nuget-api-key: $({secrets.NugetAPIKey})
nuget-version: '5.x'

- name: Restore NuGet packages
run: nuget restore Tekla.Extension.sln

- name: Build the Solution
run: msbuild Tekla.Extension.sln /p:Configuration=Release

- name: Checkout
uses: actions/checkout@v4

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup NuGet
uses: NuGet/setup-nuget@v2
with:
nuget-version: "6.x"
- name: Restore NuGet packages
run: nuget restore Tekla.Extension.sln
- name: Build solution
run: >
msbuild Tekla.Extension.sln
/p:Configuration=${{ matrix.tekla }}
/p:Platform=x64
/p:SignAssembly=false
/p:SignWithAuthenticode=false
/m
/verbosity:minimal
/nologo
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -263,4 +263,6 @@ paket-files/
__pycache__/
*.pyc

nul
nul
BuildAndPublish.bat
CLAUDE.md
136 changes: 0 additions & 136 deletions BuildAndPublish.bat

This file was deleted.

192 changes: 0 additions & 192 deletions CLAUDE.md

This file was deleted.

Loading