Skip to content

Commit

Permalink
CI updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Nov 22, 2024
1 parent dd65e14 commit 8a4d7a2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
dotnet clean Mutagen.Bethesda.Serialization.Tests.sln -c Release
dotnet nuget locals all --clear
- name: Install dependencies for Main Solution
run: dotnet restore Mutagen.Bethesda.Serialization.sln -p:Version=${{ steps.version_step.outputs.fullSemVer }}"
run: dotnet restore Mutagen.Bethesda.Serialization.sln -p:Version=${{ steps.version_step.outputs.fullSemVer }}
- name: Build Main Solution
run: dotnet build Mutagen.Bethesda.Serialization.sln -c Release --no-restore -p:Version=${{ steps.version_step.outputs.fullSemVer }}"
run: dotnet build Mutagen.Bethesda.Serialization.sln -c Release --no-restore -p:Version=${{ steps.version_step.outputs.fullSemVer }}
- name: Test Main Solution
run: dotnet test Mutagen.Bethesda.Serialization.sln -c Release --no-build -p:Version=${{ steps.version_step.outputs.fullSemVer }}"
run: dotnet test Mutagen.Bethesda.Serialization.sln -c Release --no-build -p:Version=${{ steps.version_step.outputs.fullSemVer }}
- name: Add results to local nuget cache
run: |
workingDir="$(cd "$(dirname "./")"; pwd)/$(basename "./")"
Expand All @@ -61,8 +61,8 @@ jobs:
dotnet nuget add source "${workingDir}/Mutagen.Bethesda.Serialization.Yaml/bin/Release" --name CIYaml
dotnet nuget enable source CIYaml
- name: Install dependencies for Test Solution
run: dotnet restore Mutagen.Bethesda.Serialization.Tests.sln -p:Version=${{ steps.version_step.outputs.fullSemVer }}"
run: dotnet restore Mutagen.Bethesda.Serialization.Tests.sln -p:Version=${{ steps.version_step.outputs.fullSemVer }}
- name: Build Test Solution
run: dotnet build Mutagen.Bethesda.Serialization.Tests.sln -c Release --no-restore /p:GeneratePackageOnBuild=false -p:Version=${{ steps.version_step.outputs.fullSemVer }}"
run: dotnet build Mutagen.Bethesda.Serialization.Tests.sln -c Release --no-restore /p:GeneratePackageOnBuild=false -p:Version=${{ steps.version_step.outputs.fullSemVer }}
- name: Test Test Solution
run: dotnet test Mutagen.Bethesda.Serialization.Tests.sln -c Release --no-build -p:Version=${{ steps.version_step.outputs.fullSemVer }}"
run: dotnet test Mutagen.Bethesda.Serialization.Tests.sln -c Release --no-build -p:Version=${{ steps.version_step.outputs.fullSemVer }}

0 comments on commit 8a4d7a2

Please sign in to comment.