mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 07:22:16 +00:00
Some checks failed
Build and Release / Determine run mode (push) Has been cancelled
Build and Release / Read metadata (push) Has been cancelled
Build and Release / Sync Flatpak repo (push) Has been cancelled
Build and Release / Collect Flatpak artifacts (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Has been cancelled
Build and Release / Prepare & create release (push) Has been cancelled
Build and Release / Publish release (push) Has been cancelled
42 lines
2.4 KiB
Plaintext
42 lines
2.4 KiB
Plaintext
@inherits MSGComponentBase
|
|
|
|
<MudExpansionPanels Class="mb-4" Elevation="0">
|
|
<MudExpansionPanel Text="@this.BuildProgressTitle" Expanded="@(this.Build?.Status is not VisualBriefingBuildStatus.COMPLETED)">
|
|
<MudStepperWithoutActions ActiveIndex="@this.BuildStepperIndex" ReadOnly="@true">
|
|
<ChildContent>
|
|
@for (var index = 0; index < STAGE_GROUPS.Length; index++)
|
|
{
|
|
var stepIndex = index;
|
|
<MudStep Title="@this.StepTitle(stepIndex)" Completed="@this.BuildGroupCompleted(stepIndex)" HasError="@this.BuildGroupStopped(stepIndex)">
|
|
<MudStack Spacing="1" Class="mt-2">
|
|
<MudText Typo="Typo.body2">@this.BuildGroupSummary(stepIndex)</MudText>
|
|
@if (this.BuildGroupRunning(stepIndex))
|
|
{
|
|
<MudProgressLinear Color="Color.Primary" Indeterminate="true"/>
|
|
<MudText Typo="Typo.body2">@string.Format(T("{0} in progress..."), this.StepTitle(stepIndex))</MudText>
|
|
}
|
|
|
|
@if (this.BuildGroupStopped(stepIndex))
|
|
{
|
|
<MudAlert Severity="Severity.Error" Dense="true">
|
|
@this.BuildGroupFailure(stepIndex)
|
|
</MudAlert>
|
|
|
|
@if (this.Build?.Status is VisualBriefingBuildStatus.FAILED or VisualBriefingBuildStatus.CANCELED)
|
|
{
|
|
<MudButton Variant="Variant.Filled"
|
|
Color="Color.Primary"
|
|
StartIcon="@Icons.Material.Filled.PlayArrow"
|
|
Disabled="@this.Disabled"
|
|
OnClick="@this.OnResume">
|
|
@T("Resume build")
|
|
</MudButton>
|
|
}
|
|
}
|
|
</MudStack>
|
|
</MudStep>
|
|
}
|
|
</ChildContent>
|
|
</MudStepperWithoutActions>
|
|
</MudExpansionPanel>
|
|
</MudExpansionPanels> |