From 80ced2024ceb71d0cab7f568ceee183d1e8c4ca8 Mon Sep 17 00:00:00 2001 From: Seun Akanni Date: Fri, 14 Aug 2026 23:59:44 +0100 Subject: [PATCH 1/2] ci: remove the alpha bundle, this repo is maturity=beta --- .github/workflows/ci-alpha.yml | 70 ---------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 .github/workflows/ci-alpha.yml diff --git a/.github/workflows/ci-alpha.yml b/.github/workflows/ci-alpha.yml deleted file mode 100644 index ea86b3c..0000000 --- a/.github/workflows/ci-alpha.yml +++ /dev/null @@ -1,70 +0,0 @@ -# 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: BuroHappoldEngineeringAdmin/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: BuroHappoldEngineeringAdmin/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: BuroHappoldEngineeringAdmin/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: BuroHappoldEngineeringAdmin/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 }} From e03510c6d0cad3854532b5dbce547de6fa4ee35d Mon Sep 17 00:00:00 2001 From: Seun Akanni Date: Fri, 14 Aug 2026 23:59:47 +0100 Subject: [PATCH 2/2] ci: add the beta bundle matching maturity=beta --- .github/workflows/ci-beta.yml | 138 ++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 .github/workflows/ci-beta.yml diff --git a/.github/workflows/ci-beta.yml b/.github/workflows/ci-beta.yml new file mode 100644 index 0000000..b7ade02 --- /dev/null +++ b/.github/workflows/ci-beta.yml @@ -0,0 +1,138 @@ +# Beta-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-beta.yml in each BHoM beta 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-code-compliance: + runs-on: windows-2025-vs2026 + timeout-minutes: 20 + permissions: + contents: read + pull-requests: read + actions: write + steps: + - name: Run code compliance + uses: BHoM/CI_Toolkit/.github/actions/ci-compliance@develop + with: + check_type: code + patterns: '*.cs' + 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-dataset-compliance: + runs-on: windows-2025-vs2026 + timeout-minutes: 20 + permissions: + contents: read + pull-requests: read + actions: write + steps: + - name: Run dataset compliance + uses: BHoM/CI_Toolkit/.github/actions/ci-compliance@develop + with: + check_type: dataset + patterns: ':(icase)*datasets*.json' + app_id: ${{ secrets.BHOM_APP_ID }} + private_key: ${{ secrets.BHOM_APP_PRIVATE_KEY }} + + ci-documentation-compliance: + runs-on: windows-2025-vs2026 + timeout-minutes: 20 + permissions: + contents: read + pull-requests: read + actions: write + steps: + - name: Run documentation compliance + uses: BHoM/CI_Toolkit/.github/actions/ci-compliance@develop + with: + check_type: documentation + 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-dataset-tests: + runs-on: windows-2025-vs2026 + timeout-minutes: 30 + steps: + - name: Run dataset tests + uses: BHoM/CI_Toolkit/.github/actions/ci-dataset-tests@develop + with: + 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 }} + + ci-versioning: + runs-on: windows-2025-vs2026 + timeout-minutes: 90 + steps: + - name: Run versioning + uses: BHoM/CI_Toolkit/.github/actions/ci-versioning@develop + with: + app_id: ${{ secrets.BHOM_APP_ID }} + private_key: ${{ secrets.BHOM_APP_PRIVATE_KEY }}