replace volumes with mount
This commit is contained in:
11
dist/index.js
generated
vendored
11
dist/index.js
generated
vendored
@@ -6065,6 +6065,7 @@ class Docker {
|
|||||||
if (!(0, node_fs_1.existsSync)(githubWorkflow))
|
if (!(0, node_fs_1.existsSync)(githubWorkflow))
|
||||||
(0, node_fs_1.mkdirSync)(githubWorkflow);
|
(0, node_fs_1.mkdirSync)(githubWorkflow);
|
||||||
const commandPrefix = image === `alpine` ? `/bin/sh` : `/bin/bash`;
|
const commandPrefix = image === `alpine` ? `/bin/sh` : `/bin/bash`;
|
||||||
|
const jobName = process.env.JOB_CONTAINER_NAME;
|
||||||
return `docker run \
|
return `docker run \
|
||||||
--workdir ${dockerWorkspacePath} \
|
--workdir ${dockerWorkspacePath} \
|
||||||
--rm \
|
--rm \
|
||||||
@@ -6076,11 +6077,11 @@ class Docker {
|
|||||||
--volume "${githubHome}":"/root:z" \
|
--volume "${githubHome}":"/root:z" \
|
||||||
--volume "${githubWorkflow}":"/github/workflow:z" \
|
--volume "${githubWorkflow}":"/github/workflow:z" \
|
||||||
--volume "${workspace}":"${dockerWorkspacePath}:z" \
|
--volume "${workspace}":"${dockerWorkspacePath}:z" \
|
||||||
--volume "${actionFolder}/default-build-script:/UnityBuilderAction:z" \
|
--volume "${jobName}-env/default-build-script:/UnityBuilderAction" \
|
||||||
--volume "${actionFolder}/platforms/ubuntu/steps:/steps:z" \
|
--volume "${jobName}-env/platforms/ubuntu/steps:/steps" \
|
||||||
--volume "${actionFolder}/platforms/ubuntu/entrypoint.sh:/entrypoint.sh:z" \
|
--volume "${jobName}-env/platforms/ubuntu/entrypoint.sh:/entrypoint.sh" \
|
||||||
--volume "${actionFolder}/unity-config:/usr/share/unity3d/config/:z" \
|
--volume "${jobName}-env/unity-config:/usr/share/unity3d/config" \
|
||||||
--volume "${actionFolder}/BlankProject":"/BlankProject:z" \
|
--volume "${jobName}-env/BlankProject:/BlankProject" \
|
||||||
--cpus=${dockerCpuLimit} \
|
--cpus=${dockerCpuLimit} \
|
||||||
--memory=${dockerMemoryLimit} \
|
--memory=${dockerMemoryLimit} \
|
||||||
${sshAgent ? `--volume ${sshAgent}:/ssh-agent` : ''} \
|
${sshAgent ? `--volume ${sshAgent}:/ssh-agent` : ''} \
|
||||||
|
|||||||
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
25
dist/licenses.txt
generated
vendored
25
dist/licenses.txt
generated
vendored
@@ -5003,6 +5003,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
unity-builder
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2019-present Webber Takken <webber@takken.io>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
unity-changeset
|
unity-changeset
|
||||||
MIT
|
MIT
|
||||||
MIT License
|
MIT License
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ class Docker {
|
|||||||
const githubWorkflow = path.join(runnerTempPath, '_github_workflow');
|
const githubWorkflow = path.join(runnerTempPath, '_github_workflow');
|
||||||
if (!existsSync(githubWorkflow)) mkdirSync(githubWorkflow);
|
if (!existsSync(githubWorkflow)) mkdirSync(githubWorkflow);
|
||||||
const commandPrefix = image === `alpine` ? `/bin/sh` : `/bin/bash`;
|
const commandPrefix = image === `alpine` ? `/bin/sh` : `/bin/bash`;
|
||||||
|
const jobName = process.env.JOB_CONTAINER_NAME;
|
||||||
return `docker run \
|
return `docker run \
|
||||||
--workdir ${dockerWorkspacePath} \
|
--workdir ${dockerWorkspacePath} \
|
||||||
--rm \
|
--rm \
|
||||||
@@ -68,11 +68,11 @@ class Docker {
|
|||||||
--volume "${githubHome}":"/root:z" \
|
--volume "${githubHome}":"/root:z" \
|
||||||
--volume "${githubWorkflow}":"/github/workflow:z" \
|
--volume "${githubWorkflow}":"/github/workflow:z" \
|
||||||
--volume "${workspace}":"${dockerWorkspacePath}:z" \
|
--volume "${workspace}":"${dockerWorkspacePath}:z" \
|
||||||
--volume "${actionFolder}/default-build-script:/UnityBuilderAction:z" \
|
--volume "${jobName}-env/default-build-script:/UnityBuilderAction" \
|
||||||
--volume "${actionFolder}/platforms/ubuntu/steps:/steps:z" \
|
--volume "${jobName}-env/platforms/ubuntu/steps:/steps" \
|
||||||
--volume "${actionFolder}/platforms/ubuntu/entrypoint.sh:/entrypoint.sh:z" \
|
--volume "${jobName}-env/platforms/ubuntu/entrypoint.sh:/entrypoint.sh" \
|
||||||
--volume "${actionFolder}/unity-config:/usr/share/unity3d/config/:z" \
|
--volume "${jobName}-env/unity-config:/usr/share/unity3d/config" \
|
||||||
--volume "${actionFolder}/BlankProject":"/BlankProject:z" \
|
--volume "${jobName}-env/BlankProject:/BlankProject" \
|
||||||
--cpus=${dockerCpuLimit} \
|
--cpus=${dockerCpuLimit} \
|
||||||
--memory=${dockerMemoryLimit} \
|
--memory=${dockerMemoryLimit} \
|
||||||
${sshAgent ? `--volume ${sshAgent}:/ssh-agent` : ''} \
|
${sshAgent ? `--volume ${sshAgent}:/ssh-agent` : ''} \
|
||||||
|
|||||||
Reference in New Issue
Block a user