Skip to content
Closed
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
8 changes: 8 additions & 0 deletions .github/workflows/buildbots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ jobs:
with:
dotnet-version: '8.0' # Change to your desired .NET version

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

- name: Build solution
run: dotnet build --no-restore --configuration Debug
working-directory: Source

- name: Restore & Build all .NET projects in Bots subfolders
run: |
find Bots -type f -name "*.csproj" | while read csproj; do
Expand Down
16 changes: 14 additions & 2 deletions .github/workflows/mainbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: windows-latest

steps:
- name: Checkout repository
Expand All @@ -25,5 +25,17 @@ jobs:
working-directory: Source

- name: Build solution
run: dotnet build --no-restore --configuration Release
run: dotnet build --no-restore --configuration Debug
working-directory: Source

- name: Exclude Results directory
run: Remove-Item -Recurse -Force Build\Results
shell: pwsh

- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: build-artifact
path: |
Build/
if-no-files-found: error
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
x64/
[Bb]in/
[Oo]bj/
[Bb]uild/[Bb]ots

[Bb]uild/*
![Bbuild]/Results/

# MSTest test Results
[Tt]est[Rr]esult*/
Expand Down
Binary file removed Build/Handlebars.dll
Binary file not shown.
Binary file removed Build/HarfBuzzSharp.dll
Binary file not shown.
Binary file removed Build/NasdaqTrader.Bot.Core.dll
Binary file not shown.
319 changes: 0 additions & 319 deletions Build/NasdaqTrader.CLI.deps.json

This file was deleted.

Binary file removed Build/NasdaqTrader.CLI.dll
Binary file not shown.
Binary file removed Build/NasdaqTrader.CLI.exe
Binary file not shown.
12 changes: 0 additions & 12 deletions Build/NasdaqTrader.CLI.runtimeconfig.json

This file was deleted.

Binary file removed Build/NasdaqTraderSystem.Core.dll
Binary file not shown.
Binary file removed Build/NasdaqTraderSystem.Html.dll
Binary file not shown.
Binary file removed Build/ScottPlot.dll
Binary file not shown.
Binary file removed Build/SkiaSharp.HarfBuzz.dll
Binary file not shown.
Binary file removed Build/SkiaSharp.dll
Binary file not shown.
Binary file removed Build/quickstart.png
Binary file not shown.
Binary file removed Build/runtimes/linux-arm/native/libHarfBuzzSharp.so
Binary file not shown.
Binary file removed Build/runtimes/linux-arm/native/libSkiaSharp.so
Binary file not shown.
Binary file not shown.
Binary file removed Build/runtimes/linux-arm64/native/libSkiaSharp.so
Binary file not shown.
Binary file not shown.
Binary file removed Build/runtimes/linux-musl-x64/native/libSkiaSharp.so
Binary file not shown.
Binary file removed Build/runtimes/linux-x64/native/libHarfBuzzSharp.so
Binary file not shown.
Binary file removed Build/runtimes/linux-x64/native/libSkiaSharp.so
Binary file not shown.
Binary file removed Build/runtimes/osx/native/libHarfBuzzSharp.dylib
Binary file not shown.
Binary file removed Build/runtimes/osx/native/libSkiaSharp.dylib
Binary file not shown.
Binary file removed Build/runtimes/win-arm64/native/libHarfBuzzSharp.dll
Binary file not shown.
Binary file removed Build/runtimes/win-arm64/native/libSkiaSharp.dll
Binary file not shown.
Binary file removed Build/runtimes/win-x64/native/libHarfBuzzSharp.dll
Binary file not shown.
Binary file removed Build/runtimes/win-x64/native/libSkiaSharp.dll
Binary file not shown.
Binary file removed Build/runtimes/win-x86/native/libHarfBuzzSharp.dll
Binary file not shown.
Binary file removed Build/runtimes/win-x86/native/libSkiaSharp.dll
Binary file not shown.
Loading
Loading