jstastny-cz commented on PR #3087:
URL:
https://github.com/apache/incubator-kie-tools/pull/3087#issuecomment-2841500672
@thiagoelg seems the NODE_OPTIONS config is not present in the build mode
this PR is built with, it ran as `"PARTIAL → Build upstream"` and checking the
worflow file:
```
- name: "FULL → Build"
if: steps.setup_build_mode.outputs.mode == 'full'
shell: bash
env:
WEBPACK__minimize: "false"
WEBPACK__tsLoaderTranspileOnly: "false"
KIE_TOOLS_BUILD__runLinters: "true"
KIE_TOOLS_BUILD__runTests: "true"
KIE_TOOLS_BUILD__runEndToEndTests: ${{ runner.os == 'Linux' }}
KIE_TOOLS_BUILD__containerizedEndToEndTests: ${{ runner.os ==
'Linux' }}
KIE_TOOLS_BUILD__buildContainerImages: ${{ runner.os == 'Linux' }}
KIE_TOOLS_BUILD__buildExamples: "true"
KIE_TOOLS_BUILD__ignoreTestFailures: ${{
!github.event.pull_request }}
KIE_TOOLS_BUILD__ignoreEndToEndTestFailures: ${{
!github.event.pull_request }}
DISPLAY: ":99.0"
START_SERVER_AND_TEST_INSECURE: "true"
NODE_OPTIONS: "--max_old_space_size=6144"
MAVEN_ARGS: "-B -Puse-maven-repo-local-tail"
MAVEN_OPTS: "-Xmx2g"
run: >-
eval "pnpm ${{
steps.setup_build_mode.outputs.fullBuildPnpmFilterString }}
--workspace-concurrency=1 build:prod"
- name: "PARTIAL → Build upstream"
if: steps.setup_build_mode.outputs.mode == 'partial' &&
steps.setup_build_mode.outputs.upstreamPnpmFilterString != ''
shell: bash
env:
KIE_TOOLS_BUILD__buildContainerImages: ${{ runner.os == 'Linux' }}
KIE_TOOLS_BUILD__buildExamples: "true"
MAVEN_ARGS: "-B -Puse-maven-repo-local-tail"
MAVEN_OPTS: "-Xmx2g"
run: |
eval "pnpm ${{
steps.setup_build_mode.outputs.upstreamPnpmFilterString }} build:dev"
- name: "PARTIAL → Build changed and downstream"
shell: bash
if: steps.setup_build_mode.outputs.mode == 'partial'
env:
WEBPACK__minimize: "false"
KIE_TOOLS_BUILD__runLinters: "true"
KIE_TOOLS_BUILD__runTests: "true"
KIE_TOOLS_BUILD__runEndToEndTests: ${{ runner.os == 'Linux' }}
KIE_TOOLS_BUILD__buildContainerImages: ${{ runner.os == 'Linux' }}
KIE_TOOLS_BUILD__buildExamples: "true"
DISPLAY: ":99.0"
START_SERVER_AND_TEST_INSECURE: "true"
NODE_OPTIONS: "--max_old_space_size=6144"
MAVEN_ARGS: "-B -Puse-maven-repo-local-tail"
MAVEN_OPTS: "-Xmx2g"
run: |
eval "pnpm ${{
steps.setup_build_mode.outputs.affectedPnpmFilterString }}
--workspace-concurrency=1 build:prod"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]