https://gitlab.opengeosys.org/ogs/ogs.git
Revision 280938482634db65169c59109b2c35aaaf925d3b authored by Lars Bilke on 19 December 2022, 07:42:36 UTC, committed by Lars Bilke on 19 December 2022, 07:50:13 UTC
1 parent ec71d26
Raw File
Tip revision: 280938482634db65169c59109b2c35aaaf925d3b authored by Lars Bilke on 19 December 2022, 07:42:36 UTC
[ci] Check for xvfb-run existance and add ctest exclude regex.
Tip revision: 2809384
.devcontainer.json
{
	"name": "ogs-gcc-dev",
	"image": "registry.opengeosys.org/ogs/ogs/vscode:latest",
	"postStartCommand": "nohup bash -c 'cd web; yarn; yarn build; hugo server &'",
	"forwardPorts": [
		1313
	],
	"mounts": [
		"source=devcontainer-cpm-cache,target=/opt/cpm,type=volume",
		"source=devcontainer-ccache-cache,target=/opt/ccache,type=volume",
		"source=${localWorkspaceFolder}/../build,target=${containerWorkspaceFolder}/../build,type=bind"
	],
	"customizations": {
		"vscode": {
			"extensions": [
				"ms-vscode.cmake-tools",
				"ms-vscode.cpptools"
			]
		}
	},
	"remoteUser": "vscode",
	"features": {
		"common": {}
	}
}
back to top