cleanup
parent
57ad3fc81d
commit
11e6e390dc
|
|
@ -232,7 +232,7 @@ class AWS {
|
||||||
apk add jq;
|
apk add jq;
|
||||||
ls;
|
ls;
|
||||||
git clone https://$GITHUB_TOKEN@github.com/${process.env.GITHUB_REPOSITORY}.git ${buildUid}/repo;
|
git clone https://$GITHUB_TOKEN@github.com/${process.env.GITHUB_REPOSITORY}.git ${buildUid}/repo;
|
||||||
git clone https://$GITHUB_TOKEN@github.com/webbertakken/unity-builder.git ${buildUid}/builder;
|
git clone https://$GITHUB_TOKEN@github.com/game-ci/unity-builder.git ${buildUid}/builder;
|
||||||
cd ${buildUid}/repo;
|
cd ${buildUid}/repo;
|
||||||
git checkout $GITHUB_SHA;
|
git checkout $GITHUB_SHA;
|
||||||
`,
|
`,
|
||||||
|
|
@ -250,9 +250,9 @@ class AWS {
|
||||||
yield this.run(buildUid, buildParameters.awsStackName, baseImage.toString(), ['/bin/sh'], [
|
yield this.run(buildUid, buildParameters.awsStackName, baseImage.toString(), ['/bin/sh'], [
|
||||||
'-c',
|
'-c',
|
||||||
`
|
`
|
||||||
cp -r /data/${buildUid}/builder/action/default-build-script /UnityBuilderAction;
|
cp -R /data/${buildUid}/builder/action/default-build-script/ /UnityBuilderAction;
|
||||||
cp -r /data/${buildUid}/builder/action/entrypoint.sh /entrypoint.sh;
|
cp -R /data/${buildUid}/builder/action/entrypoint.sh /entrypoint.sh;
|
||||||
cp -r /data/${buildUid}/builder/action/steps /steps;
|
cp -R /data/${buildUid}/builder/action/steps/ /steps;
|
||||||
ls;
|
ls;
|
||||||
chmod -R +x /entrypoint.sh;
|
chmod -R +x /entrypoint.sh;
|
||||||
chmod -R +x /steps;
|
chmod -R +x /steps;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -20,7 +20,7 @@ class AWS {
|
||||||
apk add jq;
|
apk add jq;
|
||||||
ls;
|
ls;
|
||||||
git clone https://$GITHUB_TOKEN@github.com/${process.env.GITHUB_REPOSITORY}.git ${buildUid}/repo;
|
git clone https://$GITHUB_TOKEN@github.com/${process.env.GITHUB_REPOSITORY}.git ${buildUid}/repo;
|
||||||
git clone https://$GITHUB_TOKEN@github.com/webbertakken/unity-builder.git ${buildUid}/builder;
|
git clone https://$GITHUB_TOKEN@github.com/game-ci/unity-builder.git ${buildUid}/builder;
|
||||||
cd ${buildUid}/repo;
|
cd ${buildUid}/repo;
|
||||||
git checkout $GITHUB_SHA;
|
git checkout $GITHUB_SHA;
|
||||||
`,
|
`,
|
||||||
|
|
@ -48,9 +48,9 @@ class AWS {
|
||||||
[
|
[
|
||||||
'-c',
|
'-c',
|
||||||
`
|
`
|
||||||
cp -r /data/${buildUid}/builder/action/default-build-script /UnityBuilderAction;
|
cp -R /data/${buildUid}/builder/action/default-build-script/ /UnityBuilderAction;
|
||||||
cp -r /data/${buildUid}/builder/action/entrypoint.sh /entrypoint.sh;
|
cp -R /data/${buildUid}/builder/action/entrypoint.sh /entrypoint.sh;
|
||||||
cp -r /data/${buildUid}/builder/action/steps /steps;
|
cp -R /data/${buildUid}/builder/action/steps/ /steps;
|
||||||
ls;
|
ls;
|
||||||
chmod -R +x /entrypoint.sh;
|
chmod -R +x /entrypoint.sh;
|
||||||
chmod -R +x /steps;
|
chmod -R +x /steps;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue