Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • hive/common-ci-configuration
1 result
Show changes
......@@ -2,9 +2,42 @@
"name": "Hive NodeJS & Typescript",
"image": "registry.gitlab.syncad.com/hive/common-ci-configuration/emsdk:4.0.1-3@sha256:a2aef5aee0c4bcf1655cd9388d9d940ebfe588c66dae12d0abf5e21a6aff6f0d",
"containerUser": "emscripten",
//"runArgs": ["--network=host"],
"containerEnv": {
"DISPLAY": "host.docker.internal:0.0"
},
"portsAttributes": {
"8000-8080": {
"label": "Playwright test server, do not autoforward",
"onAutoForward": "ignore"
},
"30000-50000": {
"label": "Playwright test server, do not autoforward",
"onAutoForward": "ignore"
}
},
"mounts": [
{
"source": "/storage1/",
"target": "/storage1/",
"type": "bind"
},
{
"source": "${localEnv:HOME}/.gitconfig",
"target": "/home/emscripten/.gitconfig",
"type": "bind"
}
],
"customizations": {
"vscode": {
"extensions": []
"extensions": [
"ms-playwright.playwright",
"Vue.volar",
"GitHub.copilot",
"GitHub.copilot-chat"
]
}
}
}
\ No newline at end of file
......@@ -12,6 +12,8 @@ include:
variables:
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: "/certs"
FF_NETWORK_PER_BUILD: "true"
image: registry.gitlab.syncad.com/hive/common-ci-configuration/docker-builder:${DOCKER_BUILDER_TAG}
before_script:
- |
......