cleanup
parent
4fed96ce52
commit
dd1b828371
|
|
@ -236,8 +236,8 @@ class AWS {
|
||||||
apk add git-lfs;
|
apk add git-lfs;
|
||||||
apk add jq;
|
apk add jq;
|
||||||
|
|
||||||
git clone -q https://${process.env.GITHUB_TOKEN}@github.com/${process.env.GITHUB_REPOSITORY}.git ${buildUid}/repo;
|
git clone https://${process.env.GITHUB_TOKEN}@github.com/${process.env.GITHUB_REPOSITORY}.git ${buildUid}/repo -q
|
||||||
git clone -q https://${process.env.GITHUB_TOKEN}@github.com/game-ci/unity-builder.git ${buildUid}/builder;
|
git clone https://${process.env.GITHUB_TOKEN}@github.com/game-ci/unity-builder.git ${buildUid}/builder -q
|
||||||
|
|
||||||
if [ ! -d "cache" ]; then
|
if [ ! -d "cache" ]; then
|
||||||
mkdir "cache"
|
mkdir "cache"
|
||||||
|
|
@ -282,9 +282,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/dist/default-build-script/ /UnityBuilderAction;
|
cp -r /data/${buildUid}/builder/dist/default-build-script/ /UnityBuilderAction;
|
||||||
cp -R /data/${buildUid}/builder/dist/entrypoint.sh /entrypoint.sh;
|
cp -r /data/${buildUid}/builder/dist/entrypoint.sh /entrypoint.sh;
|
||||||
cp -R /data/${buildUid}/builder/dist/steps/ /steps;
|
cp -r /data/${buildUid}/builder/dist/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
|
|
@ -23,8 +23,8 @@ class AWS {
|
||||||
apk add git-lfs;
|
apk add git-lfs;
|
||||||
apk add jq;
|
apk add jq;
|
||||||
|
|
||||||
git clone -q https://${process.env.GITHUB_TOKEN}@github.com/${process.env.GITHUB_REPOSITORY}.git ${buildUid}/repo;
|
git clone https://${process.env.GITHUB_TOKEN}@github.com/${process.env.GITHUB_REPOSITORY}.git ${buildUid}/repo -q
|
||||||
git clone -q https://${process.env.GITHUB_TOKEN}@github.com/game-ci/unity-builder.git ${buildUid}/builder;
|
git clone https://${process.env.GITHUB_TOKEN}@github.com/game-ci/unity-builder.git ${buildUid}/builder -q
|
||||||
|
|
||||||
if [ ! -d "cache" ]; then
|
if [ ! -d "cache" ]; then
|
||||||
mkdir "cache"
|
mkdir "cache"
|
||||||
|
|
@ -80,9 +80,9 @@ class AWS {
|
||||||
[
|
[
|
||||||
'-c',
|
'-c',
|
||||||
`
|
`
|
||||||
cp -R /data/${buildUid}/builder/dist/default-build-script/ /UnityBuilderAction;
|
cp -r /data/${buildUid}/builder/dist/default-build-script/ /UnityBuilderAction;
|
||||||
cp -R /data/${buildUid}/builder/dist/entrypoint.sh /entrypoint.sh;
|
cp -r /data/${buildUid}/builder/dist/entrypoint.sh /entrypoint.sh;
|
||||||
cp -R /data/${buildUid}/builder/dist/steps/ /steps;
|
cp -r /data/${buildUid}/builder/dist/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