tried many different options including increasing memory and turning on debug for the pipe and always get the same error.
"library initialization failed - unable to allocate file descriptor table - out of memory"
with no additional information.
current pipe step is:
- step:
name: Build and Test
runs-on:
- self.hosted
- linux
caches:
- maven
script:
- mvn -V -B -U clean install checkstyle:checkstyle help:effective-pom -Dmaven.test.skip=false -s settings.xml
artifacts:
- "target/coverage-reports/**"
- "target/surefire-reports/**"
- "target/checkstyle-result.xml"
after-script:
# Collect checkstyle results, if any, and convert to Bitbucket Code Insights.
- pipe: atlassian/checkstyle-report:0.3.0
variables:
DEBUG: 'true'
verified there is a checkstyle-result.xml file in the target folder and it is attached as an artifact to the pipeline result.