run builder in builder
parent
43029d500d
commit
365c99eb27
|
|
@ -40,8 +40,6 @@ const core = __importStar(__webpack_require__(42186));
|
|||
const model_1 = __webpack_require__(41359);
|
||||
function run() {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('test');
|
||||
try {
|
||||
model_1.Action.checkCompatibility();
|
||||
model_1.Cache.verify();
|
||||
|
|
@ -69,6 +67,8 @@ function run() {
|
|||
}
|
||||
});
|
||||
}
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('test');
|
||||
run();
|
||||
|
||||
|
||||
|
|
@ -2102,8 +2102,8 @@ class RemoteBuilder {
|
|||
mkdir ${steamPathFull}
|
||||
echo "Cloning utility repositories required for building:"
|
||||
git clone -q https://${buildParameters.githubToken}@github.com/game-ci/unity-builder.git ${builderPathFull}
|
||||
nodejs ${builderPathFull}/dist/index.js
|
||||
git clone -q https://${buildParameters.githubToken}@github.com/game-ci/steam-deploy.git ${steamPathFull}
|
||||
nodejs ${builderPathFull}/dist/index.js
|
||||
cd ${repoPathFull}
|
||||
# DISABLE LFS
|
||||
git config --global filter.lfs.smudge "git-lfs smudge --skip -- %f"
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -2,8 +2,6 @@ import * as core from '@actions/core';
|
|||
import { Action, BuildParameters, Cache, Docker, ImageTag, Output, RemoteBuilder } from './model';
|
||||
|
||||
async function run() {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('test');
|
||||
try {
|
||||
Action.checkCompatibility();
|
||||
Cache.verify();
|
||||
|
|
@ -35,4 +33,6 @@ async function run() {
|
|||
}
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('test');
|
||||
run();
|
||||
|
|
|
|||
|
|
@ -109,8 +109,8 @@ class RemoteBuilder {
|
|||
mkdir ${steamPathFull}
|
||||
echo "Cloning utility repositories required for building:"
|
||||
git clone -q https://${buildParameters.githubToken}@github.com/game-ci/unity-builder.git ${builderPathFull}
|
||||
nodejs ${builderPathFull}/dist/index.js
|
||||
git clone -q https://${buildParameters.githubToken}@github.com/game-ci/steam-deploy.git ${steamPathFull}
|
||||
nodejs ${builderPathFull}/dist/index.js
|
||||
cd ${repoPathFull}
|
||||
# DISABLE LFS
|
||||
git config --global filter.lfs.smudge "git-lfs smudge --skip -- %f"
|
||||
|
|
|
|||
Loading…
Reference in New Issue