-
Notifications
You must be signed in to change notification settings - Fork 41
github pr test use macos-latest #359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| // compiler engine | ||
| await utils.runCommand('node', ['./workflow/compiler-engine.js', forceFlag].filter(Boolean)); | ||
| await utils.runCommand('node', ['--max-old-space-size=8192', './workflow/compiler-engine.js', forceFlag].filter(Boolean)); | ||
| // build cc module |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OOM if max-old-space-size is not set.
| { | ||
| "engine": { | ||
| "repo": "git@github.com:cocos/cocos4.git", | ||
| "repo": "https://github.com/cocos/cocos4.git", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ssh cannot be used on github action.
| # http-proxy: | ||
| # description: 'HTTP 代理地址' | ||
| # required: false | ||
| # default: 'http://127.0.0.1:7890' | ||
| # https-proxy: | ||
| # description: 'HTTPS 代理地址' | ||
| # required: false | ||
| # default: 'http://127.0.0.1:7890' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no proxy on github action
| it('查询 internal 目录下 ccType = cc.SceneAsset 资源', async () => { | ||
| const allScenes = await assetManager.queryAssetInfos({ ccType: 'cc.SceneAsset', pattern: 'db://internal/**/*' }); | ||
| expect(allScenes.length).toBe(3); | ||
| expect(allScenes.length).toBe(6); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added 3 new internal scenes.
No description provided.