mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-07 20:35:33 -04:00

* avoid building a custom image * fix: remove unnecessary double-dash * Rebuild with -- fix * linting * Remove unused variable * support windows as well * Fix -- command not found * Fix unused import, remove docker build test * no dockerfile anymore Co-authored-by: Webber Takken <webber.nl@gmail.com>
17 lines
429 B
TypeScript
17 lines
429 B
TypeScript
import Action from './action';
|
|
import Docker from './docker';
|
|
|
|
describe('Docker', () => {
|
|
it.skip('runs', async () => {
|
|
const image = 'unity-builder:2019.2.11f1-webgl';
|
|
const parameters = {
|
|
workspace: Action.rootFolder,
|
|
projectPath: `${Action.rootFolder}/test-project`,
|
|
buildName: 'someBuildName',
|
|
buildsPath: 'build',
|
|
method: '',
|
|
};
|
|
await Docker.run(image, parameters);
|
|
});
|
|
});
|