default docker repository updated to new docker repository

This commit is contained in:
BLaZeKiLL 2020-10-22 18:24:42 +05:30
parent 046ab3a72d
commit 483b784253
2 changed files with 6 additions and 6 deletions

View File

@ -4,8 +4,8 @@ import Platform from './platform';
class ImageTag { class ImageTag {
constructor(imageProperties) { constructor(imageProperties) {
const { const {
repository = 'gableroux', repository = 'unityci',
name = 'unity3d', name = 'editor',
version = '2019.2.11f1', version = '2019.2.11f1',
platform, platform,
customImage, customImage,
@ -47,7 +47,7 @@ class ImageTag {
static get targetPlatformToImageSuffixMap() { static get targetPlatformToImageSuffixMap() {
const { generic, webgl, mac, windows, android, ios, facebook } = ImageTag.imageSuffixes; const { generic, webgl, mac, windows, android, ios, facebook } = ImageTag.imageSuffixes;
// @see: https://docs.unity3d.com/ScriptReference/BuildTarget.html // @see: https://docs.editor.com/ScriptReference/BuildTarget.html
return { return {
[Platform.types.StandaloneOSX]: mac, [Platform.types.StandaloneOSX]: mac,
[Platform.types.StandaloneWindows]: windows, [Platform.types.StandaloneWindows]: windows,

View File

@ -10,9 +10,9 @@ describe('UnityImageVersion', () => {
}; };
const defaults = { const defaults = {
repository: 'gableroux', repository: 'unityci',
name: 'unity3d', name: 'editor',
image: 'gableroux/unity3d', image: 'unityci/editor',
}; };
describe('constructor', () => { describe('constructor', () => {