Skip to content
Open
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
2 changes: 1 addition & 1 deletion .ci/unit-tests/Example_Engine/Example_Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Description>https://github.com/BHoM/Test_Toolkit</Description>
<Configurations>Debug;Release;Test</Configurations>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Description>https://github.com/BHoM/Test_Toolkit</Description>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<IsPackable>false</IsPackable>
<Configurations>Debug;Release;Test</Configurations>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Description>https://github.com/BHoM/Test_Toolkit</Description>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<IsPackable>false</IsPackable>

Expand Down
2 changes: 1 addition & 1 deletion .ci/unit-tests/Test_Engine_Tests/Test_Engine_Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Description>https://github.com/BHoM/Test_Toolkit</Description>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<IsPackable>false</IsPackable>
<Configurations>Debug;Release;Test</Configurations>
Expand Down
70 changes: 70 additions & 0 deletions .github/workflows/ci-alpha.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Alpha-tier proxy, BHoM variant. Bundles the tier's checks plus
# copyright-compliance (BHoM enforces OSS copyright; the BHE variant omits it).
# Copy to .github/workflows/ci-alpha.yml in each BHoM alpha repo.
# Runs on pull_request, non-blocking until a ruleset requires its checks.
# Workflow name CI keeps check contexts bare: required contexts are the job names.

name: CI

on:
pull_request:
branches:
- develop

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true

jobs:
ci-build:
runs-on: windows-2025-vs2026
timeout-minutes: 30
steps:
- name: Run build
uses: BHoM/CI_Toolkit/.github/actions/ci-build@develop
with:
app_id: ${{ secrets.BHOM_APP_ID }}
private_key: ${{ secrets.BHOM_APP_PRIVATE_KEY }}

ci-copyright-compliance:
runs-on: windows-2025-vs2026
timeout-minutes: 20
permissions:
contents: read
pull-requests: read
actions: write
steps:
- name: Run copyright compliance
uses: BHoM/CI_Toolkit/.github/actions/ci-compliance@develop
with:
check_type: copyright
patterns: '*.cs'
app_id: ${{ secrets.BHOM_APP_ID }}
private_key: ${{ secrets.BHOM_APP_PRIVATE_KEY }}

ci-project-compliance:
runs-on: windows-2025-vs2026
timeout-minutes: 20
permissions:
contents: read
pull-requests: read
actions: write
steps:
- name: Run project compliance
uses: BHoM/CI_Toolkit/.github/actions/ci-compliance@develop
with:
check_type: project
patterns: '*AssemblyInfo.cs *.csproj'
app_id: ${{ secrets.BHOM_APP_ID }}
private_key: ${{ secrets.BHOM_APP_PRIVATE_KEY }}

ci-serialisation:
runs-on: windows-2025-vs2026
timeout-minutes: 90
steps:
- name: Run serialisation
uses: BHoM/CI_Toolkit/.github/actions/ci-serialisation@develop
with:
app_id: ${{ secrets.BHOM_APP_ID }}
private_key: ${{ secrets.BHOM_APP_PRIVATE_KEY }}
base_ref: ${{ github.base_ref }}
2 changes: 1 addition & 1 deletion CodeComplianceTest_Engine/CodeComplianceTest_Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Product>CodeComplianceTest_Engine</Product>
<Copyright>Copyright � https://github.com/BHoM</Copyright>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
Expand Down
2 changes: 1 addition & 1 deletion CodeComplianceTest_Engine/Query/CurrentVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static string FullCurrentAssemblyVersion()

public static string CurrentAssemblyFileVersion()
{
return "9.2"; //Update each milestone - don't forget the one above!
return "9.3"; //Update each milestone - don't forget the one above!
}

public static string FullCurrentAssemblyFileVersion()
Expand Down
2 changes: 1 addition & 1 deletion CodeCompliance_oM/CodeComplianceTest_oM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Product>Test_oM</Product>
<Copyright>Copyright � https://github.com/BHoM</Copyright>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetDir)$(TargetFileName)&quot; &quot;$(ProgramData)\BHoM\Assemblies&quot; /Y" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Product>InteropabilityTest_Engine</Product>
<Copyright>Copyright � https://github.com/BHoM</Copyright>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="C:\Windows\System32\xcopy &quot;$(SolutionDir)DataSets\*.*&quot; &quot;C:\ProgramData\BHoM\DataSets&quot; /Y /I /E&#xD;&#xA;xcopy &quot;$(TargetDir)$(TargetFileName)&quot; &quot;C:\ProgramData\BHoM\Assemblies&quot; /Y" />
Expand Down
2 changes: 1 addition & 1 deletion InteroperabilityTest_oM/InteroperabilityTest_oM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Product>InteroperabilityTest_oM</Product>
<Copyright>Copyright � 2020</Copyright>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetDir)$(TargetFileName)&quot; &quot;$(ProgramData)\BHoM\Assemblies&quot; /Y" />
Expand Down
2 changes: 1 addition & 1 deletion NUnit_Engine/NUnit_Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>https://github.com/BHoM/Test_Toolkit</Description>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<RootNamespace>BH.Engine.Test.NUnit</RootNamespace>
<BaseOutputPath>..\Build</BaseOutputPath>
Expand Down
2 changes: 1 addition & 1 deletion NUnit_oM/NUnit_oM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>https://github.com/BHoM/Test_Toolkit</Description>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<RootNamespace>BH.oM.Test.NUnit</RootNamespace>
<BaseOutputPath>..\Build</BaseOutputPath>
Expand Down
2 changes: 1 addition & 1 deletion TestRunner/TestRunner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Description>https://github.com/BHoM/Test_Toolkit</Description>
<Copyright>Copyright � https://github.com/BHoM</Copyright>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>embedded</DebugType>
Expand Down
2 changes: 1 addition & 1 deletion Test_Engine/Test_Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Product>Test_Engine</Product>
<Copyright>Copyright � https://github.com/BHoM</Copyright>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetDir)$(TargetFileName)&quot; &quot;C:\ProgramData\BHoM\Assemblies&quot; /Y" />
Expand Down
2 changes: 1 addition & 1 deletion UnitTest_Engine/UnitTest_Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Product>UnitTest_Engine</Product>
<Copyright>Copyright � 2020</Copyright>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetDir)$(TargetFileName)&quot; &quot;C:\ProgramData\BHoM\Assemblies&quot; /Y" />
Expand Down
2 changes: 1 addition & 1 deletion UnitTest_oM/UnitTest_oM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Product>UnitTest_oM</Product>
<Copyright>Copyright � https://github.com/BHoM</Copyright>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<FileVersion>9.2.0.0</FileVersion>
<FileVersion>9.3.0.0</FileVersion>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(TargetDir)$(TargetFileName)&quot; &quot;$(ProgramData)\BHoM\Assemblies&quot; /Y" />
Expand Down