mirror of
				https://github.com/DarkflameUniverse/DarkflameServer.git
				synced 2025-10-31 04:32:06 +00:00 
			
		
		
		
	attempted CI fix (feel free to revert)
This commit is contained in:
		| @@ -1,191 +1,219 @@ | ||||
| { | ||||
|     "version": 6, | ||||
|     "cmakeMinimumRequired": { | ||||
|         "major": 3, | ||||
|         "minor": 25, | ||||
|         "patch": 0 | ||||
|     }, | ||||
|     "configurePresets": [ | ||||
|         { | ||||
|             "name": "default", | ||||
|             "displayName": "Default configure step", | ||||
|             "description": "Use 'build' dir and Unix makefiles", | ||||
|             "binaryDir": "${sourceDir}/build", | ||||
|             "generator": "Unix Makefiles", | ||||
|             "hidden": true | ||||
|         }, | ||||
|         { | ||||
|             "name": "windows-default", | ||||
|             "inherits": "default", | ||||
|             "displayName": "Windows Default Configure Settings", | ||||
|             "description": "Sets build and install directories", | ||||
|             "generator": "Visual Studio 17 2022", | ||||
|             "condition": { | ||||
|                 "type": "equals", | ||||
|                 "lhs": "${hostSystemName}", | ||||
|                 "rhs": "Windows" | ||||
|             }, | ||||
|             "hidden": true | ||||
|         }, | ||||
|         { | ||||
|             "name": "windows-msvc", | ||||
|             "inherits": "windows-default", | ||||
|             "displayName": "Windows (MSVC)", | ||||
|             "description": "Create a build using MSVC" | ||||
|         }, | ||||
|         { | ||||
|             "name": "windows-clang", | ||||
|             "inherits": "windows-default", | ||||
|             "displayName": "EXPERIMENTAL - Windows (Clang)", | ||||
|             "description": "Create a build using Clang", | ||||
|             "toolset": "ClangCL" | ||||
|         }, | ||||
|         { | ||||
|             "name": "linux-default", | ||||
|             "inherits": "default", | ||||
|             "hidden": true, | ||||
|             "condition": { | ||||
|                 "type": "equals", | ||||
|                 "lhs": "${hostSystemName}", | ||||
|                 "rhs": "Linux" | ||||
|             } | ||||
|         }, | ||||
|         { | ||||
|             "name": "linux-clang", | ||||
|             "inherits": "linux-default", | ||||
|             "toolchainFile": "${sourceDir}/cmake/toolchains/linux-clang.cmake", | ||||
|             "displayName": "Linux (Clang)", | ||||
|             "description": "Create a build using the Clang toolchain for Linux" | ||||
|         }, | ||||
|         { | ||||
|             "name": "linux-gnu", | ||||
|             "inherits": "linux-default", | ||||
|             "toolchainFile": "${sourceDir}/cmake/toolchains/linux-gnu.cmake", | ||||
|             "displayName": "Linux (GNU)", | ||||
|             "description": "Create a build using the GNU toolchain for Linux" | ||||
|         }, | ||||
|         { | ||||
|             "name": "macos", | ||||
|             "inherits": "default", | ||||
|             "displayName": "MacOS", | ||||
|             "description": "Create a build for MacOS", | ||||
|             "condition": { | ||||
|                 "type": "equals", | ||||
|                 "lhs": "${hostSystemName}", | ||||
|                 "rhs": "Darwin" | ||||
|             } | ||||
|         } | ||||
|     ], | ||||
|     "buildPresets": [ | ||||
|         { | ||||
|             "name": "default", | ||||
|             "configurePreset": "default", | ||||
|             "displayName": "Default Build", | ||||
|             "description": "Default Build", | ||||
|             "jobs": 2 | ||||
|         } | ||||
|     ], | ||||
|     "testPresets": [ | ||||
|         { | ||||
|             "name": "ci-ubuntu-22.04", | ||||
|             "configurePreset": "linux-clang", | ||||
|             "displayName": "CI Tests on Linux", | ||||
|             "description": "Runs all tests on a linux configuration", | ||||
|             "execution": { | ||||
|                 "jobs": 2 | ||||
|             }, | ||||
|             "output": { | ||||
|                 "outputOnFailure": true | ||||
|             } | ||||
|         }, | ||||
|         { | ||||
|             "name": "ci-macos-13", | ||||
|             "configurePreset": "macos", | ||||
|             "displayName": "CI Tests on MacOS", | ||||
|             "description": "Runs all tests on a Mac configuration", | ||||
|             "execution": { | ||||
|                 "jobs": 2 | ||||
|             }, | ||||
|             "output": { | ||||
|                 "outputOnFailure": true | ||||
|             } | ||||
|         }, | ||||
|         { | ||||
|             "name": "ci-windows-2022", | ||||
|             "configurePreset": "windows-msvc", | ||||
|             "displayName": "CI Tests on windows", | ||||
|             "description": "Runs all tests on a windows configuration", | ||||
|             "configuration": "RelWithDebInfo", | ||||
|             "execution": { | ||||
|                 "jobs": 2 | ||||
|             }, | ||||
|             "output": { | ||||
|                 "outputOnFailure": true | ||||
|             }, | ||||
|             "filter": { | ||||
|                 "exclude": { | ||||
|                     "name": "((example)|(minigzip))+" | ||||
|                 } | ||||
|             } | ||||
|         } | ||||
|     ], | ||||
|     "workflowPresets": [ | ||||
|         { | ||||
|             "name": "ci-windows-2022", | ||||
|             "displayName": "Windows (MSVC)", | ||||
|             "description": "CI workflow preset for Windows", | ||||
|             "steps": [ | ||||
|                 { | ||||
|                     "type": "configure", | ||||
|                     "name": "windows-msvc" | ||||
|                 }, | ||||
|                 { | ||||
|                     "type": "build", | ||||
|                     "name": "default" | ||||
|                 }, | ||||
|                 { | ||||
|                     "type": "test", | ||||
|                     "name": "ci-windows-2022" | ||||
|                 } | ||||
|             ] | ||||
|         }, | ||||
|         { | ||||
|             "name": "ci-ubuntu-22.04", | ||||
|             "displayName": "Linux (GNU)", | ||||
|             "description": "CI workflow preset for Ubuntu", | ||||
|             "steps": [ | ||||
|                 { | ||||
|                     "type": "configure", | ||||
|                     "name": "linux-gnu" | ||||
|                 }, | ||||
|                 { | ||||
|                     "type": "build", | ||||
|                     "name": "default" | ||||
|                 }, | ||||
|                 { | ||||
|                     "type": "test", | ||||
|                     "name": "ci-ubuntu-22.04" | ||||
|                 } | ||||
|             ] | ||||
|         }, | ||||
|         { | ||||
|             "name": "ci-macos-13", | ||||
|             "displayName": "MacOS (Clang)", | ||||
|             "description": "CI workflow preset for MacOS", | ||||
|             "steps": [ | ||||
|                 { | ||||
|                     "type": "configure", | ||||
|                     "name": "macos" | ||||
|                 }, | ||||
|                 { | ||||
|                     "type": "build", | ||||
|                     "name": "default" | ||||
|                 }, | ||||
|                 { | ||||
|                     "type": "test", | ||||
|                     "name": "ci-macos-13" | ||||
|                 } | ||||
|             ] | ||||
|         } | ||||
|     ] | ||||
| 	"version": 6, | ||||
| 	"cmakeMinimumRequired": { | ||||
| 		"major": 3, | ||||
| 		"minor": 25, | ||||
| 		"patch": 0 | ||||
| 	}, | ||||
| 	"configurePresets": [ | ||||
| 		{ | ||||
| 			"name": "default", | ||||
| 			"displayName": "Default configure step", | ||||
| 			"description": "Use 'build' dir and Unix makefiles", | ||||
| 			"binaryDir": "${sourceDir}/build", | ||||
| 			"generator": "Unix Makefiles", | ||||
| 			"hidden": true | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "windows-default", | ||||
| 			"inherits": "default", | ||||
| 			"displayName": "Windows Default Configure Settings", | ||||
| 			"description": "Sets build and install directories", | ||||
| 			"generator": "Visual Studio 17 2022", | ||||
| 			"condition": { | ||||
| 				"type": "equals", | ||||
| 				"lhs": "${hostSystemName}", | ||||
| 				"rhs": "Windows" | ||||
| 			}, | ||||
| 			"hidden": true | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "windows-msvc", | ||||
| 			"inherits": "windows-default", | ||||
| 			"displayName": "Windows (MSVC)", | ||||
| 			"description": "Create a build using MSVC" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "windows-clang", | ||||
| 			"inherits": "windows-default", | ||||
| 			"displayName": "EXPERIMENTAL - Windows (Clang)", | ||||
| 			"description": "Create a build using Clang", | ||||
| 			"toolset": "ClangCL" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "linux-default", | ||||
| 			"inherits": "default", | ||||
| 			"hidden": true, | ||||
| 			"condition": { | ||||
| 				"type": "equals", | ||||
| 				"lhs": "${hostSystemName}", | ||||
| 				"rhs": "Linux" | ||||
| 			} | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "linux-clang", | ||||
| 			"inherits": "linux-default", | ||||
| 			"toolchainFile": "${sourceDir}/cmake/toolchains/linux-clang.cmake", | ||||
| 			"displayName": "Linux (Clang)", | ||||
| 			"description": "Create a build using the Clang toolchain for Linux" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "linux-gnu", | ||||
| 			"inherits": "linux-default", | ||||
| 			"toolchainFile": "${sourceDir}/cmake/toolchains/linux-gnu.cmake", | ||||
| 			"displayName": "Linux (GNU)", | ||||
| 			"description": "Create a build using the GNU toolchain for Linux" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "macos", | ||||
| 			"inherits": "default", | ||||
| 			"displayName": "MacOS", | ||||
| 			"description": "Create a build for MacOS", | ||||
| 			"condition": { | ||||
| 				"type": "equals", | ||||
| 				"lhs": "${hostSystemName}", | ||||
| 				"rhs": "Darwin" | ||||
| 			} | ||||
| 		} | ||||
| 	], | ||||
| 	"buildPresets": [ | ||||
| 		{ | ||||
| 			"name": "default", | ||||
| 			"configurePreset": "default", | ||||
| 			"displayName": "Default Build", | ||||
| 			"description": "Default Build", | ||||
| 			"jobs": 2 | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "windows-msvc-debug", | ||||
| 			"inherits": "default", | ||||
| 			"configurePreset": "windows-msvc", | ||||
| 			"displayName": "Windows (MSVC)", | ||||
| 			"description": "This preset is used to build using the MSVC toolchain on Windows" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "linux-clang", | ||||
| 			"inherits": "default", | ||||
| 			"configurePreset": "linux-clang", | ||||
| 			"displayName": "Linux (Clang)", | ||||
| 			"description": "This preset is used to build using the Clang toolchain on Linux" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "linux-gnu", | ||||
| 			"inherits": "default", | ||||
| 			"configurePreset": "linux-gnu", | ||||
| 			"displayName": "Linux (GNU)", | ||||
| 			"description": "This preset is used to build using the GNU toolchain on Linux" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "macos", | ||||
| 			"inherits": "default", | ||||
| 			"configurePreset": "macos", | ||||
| 			"displayName": "MacOS", | ||||
| 			"description": "This preset is used to build on MacOS" | ||||
| 		} | ||||
| 	], | ||||
| 	"testPresets": [ | ||||
| 		{ | ||||
| 			"name": "ci-ubuntu-22.04", | ||||
| 			"configurePreset": "linux-clang", | ||||
| 			"displayName": "CI Tests on Linux", | ||||
| 			"description": "Runs all tests on a linux configuration", | ||||
| 			"execution": { | ||||
| 				"jobs": 2 | ||||
| 			}, | ||||
| 			"output": { | ||||
| 				"outputOnFailure": true | ||||
| 			} | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "ci-macos-13", | ||||
| 			"configurePreset": "macos", | ||||
| 			"displayName": "CI Tests on MacOS", | ||||
| 			"description": "Runs all tests on a Mac configuration", | ||||
| 			"execution": { | ||||
| 				"jobs": 2 | ||||
| 			}, | ||||
| 			"output": { | ||||
| 				"outputOnFailure": true | ||||
| 			} | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "ci-windows-2022", | ||||
| 			"configurePreset": "windows-msvc", | ||||
| 			"displayName": "CI Tests on windows", | ||||
| 			"description": "Runs all tests on a windows configuration", | ||||
| 			"configuration": "RelWithDebInfo", | ||||
| 			"execution": { | ||||
| 				"jobs": 2 | ||||
| 			}, | ||||
| 			"output": { | ||||
| 				"outputOnFailure": true | ||||
| 			}, | ||||
| 			"filter": { | ||||
| 				"exclude": { | ||||
| 					"name": "((example)|(minigzip))+" | ||||
| 				} | ||||
| 			} | ||||
| 		} | ||||
| 	], | ||||
| 	"workflowPresets": [ | ||||
| 		{ | ||||
| 			"name": "ci-windows-2022", | ||||
| 			"displayName": "Windows (MSVC)", | ||||
| 			"description": "CI workflow preset for Windows", | ||||
| 			"steps": [ | ||||
| 				{ | ||||
| 					"type": "configure", | ||||
| 					"name": "windows-msvc" | ||||
| 				}, | ||||
| 				{ | ||||
| 					"type": "build", | ||||
| 					"name": "windows-msvc" | ||||
| 				}, | ||||
| 				{ | ||||
| 					"type": "test", | ||||
| 					"name": "ci-windows-2022" | ||||
| 				} | ||||
| 			] | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "ci-ubuntu-22.04", | ||||
| 			"displayName": "Linux (GNU)", | ||||
| 			"description": "CI workflow preset for Ubuntu", | ||||
| 			"steps": [ | ||||
| 				{ | ||||
| 					"type": "configure", | ||||
| 					"name": "linux-gnu" | ||||
| 				}, | ||||
| 				{ | ||||
| 					"type": "build", | ||||
| 					"name": "linux-gnu" | ||||
| 				}, | ||||
| 				{ | ||||
| 					"type": "test", | ||||
| 					"name": "ci-ubuntu-22.04" | ||||
| 				} | ||||
| 			] | ||||
| 		}, | ||||
| 		{ | ||||
| 			"name": "ci-macos-13", | ||||
| 			"displayName": "MacOS (Clang)", | ||||
| 			"description": "CI workflow preset for MacOS", | ||||
| 			"steps": [ | ||||
| 				{ | ||||
| 					"type": "configure", | ||||
| 					"name": "macos" | ||||
| 				}, | ||||
| 				{ | ||||
| 					"type": "build", | ||||
| 					"name": "macos" | ||||
| 				}, | ||||
| 				{ | ||||
| 					"type": "test", | ||||
| 					"name": "ci-macos-13" | ||||
| 				} | ||||
| 			] | ||||
| 		} | ||||
| 	] | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 jadebenn
					jadebenn