Skip to content

Commit b1ccf91

Browse files
authored
compile: try disabling parallel builds and isolate projects
If multiple projects try to use CKAN at the same time, the build can fail.
1 parent bb8aa6a commit b1ccf91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/compile/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ runs:
7575
shell: bash
7676
working-directory: ${{ inputs.working-directory }}
7777
run: |
78-
dotnet msbuild -p:Configuration=${{ inputs.build-configuration }} \
78+
dotnet msbuild -m:1 -isolate -p:Configuration=${{ inputs.build-configuration }} \
7979
-p:ManagedRelativePath=KSP_x64_Data/Managed ${{ inputs.solution-file-path }} \
8080
${{ runner.debug && '-v:detailed' }}

0 commit comments

Comments
 (0)