mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-01-29 06:20:07 +08:00
* avoid building custom image * Rebuild * fix wrong folder for entrypoint.sh * run with bash * fix path to bash * Mount with permissions * Rebuild * add missing continuation * rebuild * Fix docker invocation * delete unused code * Fix test * remove old comment * Fix code styles 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);
|
|
});
|
|
});
|