Skip to content

Commit

Permalink
Fix remaining regressions.
Browse files Browse the repository at this point in the history
  • Loading branch information
vddCore committed May 22, 2024
1 parent e5a86f8 commit 32a07b0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-frontend-with-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Run language tests
working-directory: VirtualMachine/Tests/EVIL.Ceres.LanguageTests/bin/${{ matrix.configuration }}/net7.0
run: ./Ceres.LanguageTests tests --fail-on-compiler-errors --fail-on-test-errors
run: ./LanguageTestRunner tests --fail-on-compiler-errors --fail-on-test-errors

- name: Publish to directory
run: dotnet publish FrontEnd/EVIL.evil/EVIL.evil.csproj -c $Configuration -r $RuntimeIdentifier --no-self-contained -p:PublishSingleFile=true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-nuget-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Run language tests
working-directory: VirtualMachine/Tests/EVIL.Ceres.LanguageTests/bin/${{ matrix.configuration }}/net7.0
run: ./Ceres.LanguageTests tests --fail-on-compiler-errors --fail-on-test-errors
run: ./LanguageTestRunner tests --fail-on-compiler-errors --fail-on-test-errors

- name: Create NuGet packages
run: dotnet pack -o evil-nuget-latest
Expand Down
2 changes: 0 additions & 2 deletions EVIL.sln
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,9 @@ Global
{3932F10C-210E-402A-99CC-C5F4132E46C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3932F10C-210E-402A-99CC-C5F4132E46C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3932F10C-210E-402A-99CC-C5F4132E46C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3932F10C-210E-402A-99CC-C5F4132E46C9}.Release|Any CPU.Build.0 = Release|Any CPU
{021189CD-8631-4452-BC45-57566A76BC3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{021189CD-8631-4452-BC45-57566A76BC3A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{021189CD-8631-4452-BC45-57566A76BC3A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{021189CD-8631-4452-BC45-57566A76BC3A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
6 changes: 3 additions & 3 deletions VirtualMachine/EVIL.Ceres.Runtime/EVIL.Ceres.Runtime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>

<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

<Version>0.17.2</Version>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\EVIL.Ceres\EVIL.Ceres.csproj" />
<ProjectReference Include="..\EVIL.Ceres\EVIL.Ceres.csproj"/>
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion VirtualMachine/EVIL.Ceres.Runtime/EvilRuntime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void RegisterBuiltInFunctions()
var scriptNames = Assembly
.GetExecutingAssembly()
.GetManifestResourceNames()
.Where(x => x.StartsWith("EVIL.EVIL.Ceres.Runtime.ScriptBuiltins"));
.Where(x => x.StartsWith("EVIL.Ceres.Runtime.ScriptBuiltins"));

foreach (var scriptName in scriptNames)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>

<AssemblyName>LanguageTestRunner</AssemblyName>

<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down

0 comments on commit 32a07b0

Please sign in to comment.