Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
939890a
Add the core domain interfaces
FireController1847 Oct 25, 2025
49ddb69
Add the core layer interfaces
FireController1847 Oct 25, 2025
60b21ec
Add the core connector interfaces
FireController1847 Oct 25, 2025
e3b3a50
Add the core interaction interfaces
FireController1847 Oct 25, 2025
5f7a052
Add the core debugging classes
FireController1847 Oct 25, 2025
a6191f3
Add Tooling/CatalystUI.Profiling
FireController1847 Oct 25, 2025
a074dbc
Add Core/CatalystUI.Collections
FireController1847 Oct 25, 2025
a4250c8
Add Threading Projects
FireController1847 Oct 25, 2025
c73b058
Update project authors
FireController1847 Oct 25, 2025
0dbc4f9
Update workflow to include more branches
FireController1847 Oct 25, 2025
d789a90
Merge branch 'main' into experimental
FireController1847 Oct 25, 2025
9c516ba
Update CatalystUI/Core/CatalystUI.Threading/DelegateQueue.cs
FireController1847 Oct 25, 2025
c1b0561
Resolve build failure
FireController1847 Oct 25, 2025
ae7d949
Update CodeQL workflow to include additional branches
FireController1847 Oct 25, 2025
72514f5
Merge remote-tracking branch 'origin/main' into experimental
FireController1847 Oct 25, 2025
606eec7
Add builder pattern classes
FireController1847 Oct 26, 2025
8e4ae1d
Add Core/CatalystUI.Debug
FireController1847 Oct 26, 2025
0b2ba2f
Add Core/CatalystUI.Supplementary
FireController1847 Oct 26, 2025
7683019
Add Core/CatalystUI.Mathematics
FireController1847 Oct 26, 2025
1c15697
Add interactions supplementary
FireController1847 Oct 26, 2025
2a8b6f2
Add the Arcane project
FireController1847 Oct 26, 2025
4b813ce
Add manual .NET action trigger
FireController1847 Oct 26, 2025
e2e963a
Merge branch 'main' into experimental-wip
FireController1847 Oct 26, 2025
d8ce1e2
Merge branch 'experimental-wip' into experimental
FireController1847 Oct 28, 2025
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
99 changes: 99 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL Advanced"

on:
push:
branches: [ "main", "beta", "alpha" ]
pull_request:
branches: [ "main", "beta", "alpha" ]
schedule:
- cron: '42 23 * * 3'

jobs:
analyze:
name: Analyze (${{ matrix.language }})
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
permissions:
# required for all workflows
security-events: write

# required to fetch internal or private CodeQL packs
packages: read

# only required for workflows in private repositories
actions: read
contents: read

strategy:
fail-fast: false
matrix:
include:
- language: actions
build-mode: none
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
# Use `c-cpp` to analyze code written in C, C++ or both
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v4

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
# or others). This is typically only required for manual builds.
# - name: Setup runtime (example)
# uses: actions/setup-example@v1

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality

# If the analyze step fails for one of the languages you are analyzing with
# "We were unable to automatically build your code", modify the matrix above
# to set the build mode to "manual" for that language. Then modify this step
# to build your code.
# ℹ️ Command-line programs to run using the OS shell.
# πŸ“š See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
- name: Run manual build steps
if: matrix.build-mode == 'manual'
shell: bash
run: |
echo 'If you are using a "manual" build mode for one or more of the' \
'languages you are analyzing, replace this with the commands to build' \
'your code, for example:'
echo ' make bootstrap'
echo ' make release'
exit 1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"
52 changes: 52 additions & 0 deletions .github/workflows/dotnet-manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET (Manual Build)
permissions:
contents: read

on:
workflow_dispatch: # Manual trigger only
inputs:
branch:
description: 'Branch to build'
required: false
default: ''
type: string

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch || github.ref_name }}

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x

- name: Install Mono
run: |
sudo apt-get update
sudo apt-get install -y mono-devel

- name: Run Configure setup
shell: pwsh
run: |
Write-Host "Running Configure.ps1..."
echo "1" | pwsh ./Configure.ps1 setup -Verbose

- name: Restore dependencies
working-directory: CatalystUI
run: dotnet restore

- name: Build
working-directory: CatalystUI
run: dotnet build --no-restore

- name: Test
working-directory: CatalystUI
run: dotnet test --no-build --verbosity normal
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ permissions:

on:
push:
branches: [ "main" ]
branches: [ "main", "beta", "alpha" ]
pull_request:
branches: [ "main" ]
branches: [ "main", "beta", "alpha" ]

jobs:
build:
Expand Down
30 changes: 27 additions & 3 deletions .scripts/Setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,42 @@ $projectsList = @(
@{
Module = "Core"
Projects = @(
@{ Folder = "Core"; Name = "CatalystUI.Core" }
@{ Folder = "Core"; Name = "CatalystUI.Attributes" },
@{ Folder = "Core"; Name = "CatalystUI.Collections" },
@{ Folder = "Core"; Name = "CatalystUI.Mathematics" },
@{ Folder = "Core"; Name = "CatalystUI.Threading" },
@{ Folder = "Tooling"; Name = "CatalystUI.Analyzers" },
@{ Folder = "Tooling"; Name = "CatalystUI.CodeFix" },
@{ Folder = "Core"; Name = "CatalystUI.Core" },
@{ Folder = "Core"; Name = "CatalystUI.Debug" },
@{ Folder = "Core"; Name = "CatalystUI.Supplementary" }
)
PromptIgnore = $false
Depends = @()
},
@{
Module = "Arcane"
Projects = @(
@{ Folder = "Modules/Arcane"; Name = "CatalystUI.Modules.Arcane.Core" }
)
PromptIgnore = $false
Depends = @("Core")
},
@{
Module = "Arcane.Ini"
Project = @(
@{ Folder = "Modules/Arcane"; Name = "CatalystUI.Modules.Arcane.Ini" }
)
PromptIgnore = $false
Depends = @("Arcane")
}
)

# Build prompt options
$promptOptions = @("All") + (
$projectsList |
Where-Object { -not $_.PromptIgnore -and $_.Module -ne "All" } |
Select-Object -ExpandProperty Module -Unique |
Sort-Object
Select-Object -ExpandProperty Module -Unique
)

# Prompt user for module selection
Expand Down
Loading