Revision 7f551d214aad594ce224c208b5515dfaeaa9f62d authored by Lars Bilke on 18 October 2023, 11:38:02 UTC, committed by Lars Bilke on 18 October 2023, 11:38:02 UTC
[ci] Limit max notebook runtime in MR pipelines to 10 minutes

See merge request ogs/ogs!4769
2 parent s 467d052 + 8b61a03
Raw File
.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