We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
x
Unknown - most likely not based on previous similar issue reports. Viewing similar closed issues did not yield a solution.
Angular 14.1.0 cannot build on RHEL 7.x when FIPS is enabled.
npm i npm run build-prod
package.json { "name": "excluded", "version": "0.0.0", "scripts": { "ng": "ng", "start": "ng serve --configuration local", "build": "ng build", "build-prod": "ng build --output-hashing=none --output-path=../api/src/main/resources/static --base-href /excluded/", "test": "ng test", "unit": "ng test --watch=false", "e2e": "ng e2e" }, "private": true, "dependencies": { "@angular/animations": "^14.1.0", "@angular/cdk": "^14.1.0", "@angular/common": "^14.1.0", "@angular/compiler": "^14.1.0", "@angular/core": "^14.1.0", "@angular/forms": "^14.1.0", "@angular/platform-browser": "^14.1.0", "@angular/platform-browser-dynamic": "^14.1.0", "@angular/pwa": "^14.1.0", "@angular/router": "^14.1.0", "@angular/service-worker": "^14.1.0", "@elderbyte/ts-logger": "^0.1.2", "@elderbyte/ts-stomp": "^4.0.0", "core-js": "^3.24.0", "file-saver": "^2.0.5", "hammerjs": "^2.0.8", "jquery": "^3.6.0", "moment": "^2.29.4", "ng-recaptcha": "^10.0.0", "ngx-infinite-scroll": "^14.0.0", "rxjs": "^6.5.2", "zone.js": "^0.11.7" }, "devDependencies": { "@angular-devkit/build-angular": "~14.1.0", "@angular/cli": "~14.1.0", "@angular/compiler-cli": "^14.1.0", "@angular/language-service": "^14.1.0", "@types/file-saver": "^2.0.5", "@types/jasmine": "4.0.3", "@types/jasminewd2": "~2.0.10", "@types/jquery": "^3.5.14", "@types/node": "~18.6.1", "jasmine-core": "~4.3.0", "jasmine-spec-reporter": "~7.0.0", "karma": "^6.4.0", "karma-chrome-launcher": "~3.1.1", "karma-coverage-istanbul-reporter": "~3.0.3", "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "^2.0.0", "node-sass": "^7.0.1", "protractor": "~7.0.0", "ts-mockito": "^2.6.1", "ts-node": "~10.9.1", "typescript": "~4.7.4" } }
./src/main.ts - Error: Module build failed (from ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js): Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS
./src/polyfills.ts - Error: Module build failed (from ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js): Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS
./node_modules/css-loader/dist/runtime/api.js - Error: Module build failed (from ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js): Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS
./node_modules/css-loader/dist/runtime/noSourceMaps.js - Error: Module build failed (from ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js): Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS
./src/styles.scss - Error: Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js): HookWebpackError: Module build failed (from ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js): Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS
Angular CLI: 14.1.0 Node: 16.15.0 Package Manager: npm 8.5.5 OS: linux x64
Angular: 14.1.0 ... animations, cdk, cli, common, compiler, compiler-cli, core ... forms, language-service, platform-browser ... platform-browser-dynamic, pwa, router, service-worker
@angular-devkit/architect 0.1401.0 @angular-devkit/build-angular 14.1.0 @angular-devkit/core 14.1.0 @angular-devkit/schematics 14.1.0 @schematics/angular 14.1.0 rxjs 6.6.7 typescript 4.7.4
The text was updated successfully, but these errors were encountered:
Unfortunately this is not actionable from our end as babel-loader doesn't work with FIPS.
See: babel/babel-loader#910
Sorry, something went wrong.
Gotcha @alan-agius4 thank you for the direction.
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.
No branches or pull requests
🐞 Bug report
Command (mark with an
x
)Is this a regression?
Unknown - most likely not based on previous similar issue reports. Viewing similar closed issues did not yield a solution.
Description
Angular 14.1.0 cannot build on RHEL 7.x when FIPS is enabled.
🔬 Minimal Reproduction
npm i
npm run build-prod
package.json
{
"name": "excluded",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --configuration local",
"build": "ng build",
"build-prod": "ng build --output-hashing=none --output-path=../api/src/main/resources/static --base-href /excluded/",
"test": "ng test",
"unit": "ng test --watch=false",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.1.0",
"@angular/cdk": "^14.1.0",
"@angular/common": "^14.1.0",
"@angular/compiler": "^14.1.0",
"@angular/core": "^14.1.0",
"@angular/forms": "^14.1.0",
"@angular/platform-browser": "^14.1.0",
"@angular/platform-browser-dynamic": "^14.1.0",
"@angular/pwa": "^14.1.0",
"@angular/router": "^14.1.0",
"@angular/service-worker": "^14.1.0",
"@elderbyte/ts-logger": "^0.1.2",
"@elderbyte/ts-stomp": "^4.0.0",
"core-js": "^3.24.0",
"file-saver": "^2.0.5",
"hammerjs": "^2.0.8",
"jquery": "^3.6.0",
"moment": "^2.29.4",
"ng-recaptcha": "^10.0.0",
"ngx-infinite-scroll": "^14.0.0",
"rxjs": "^6.5.2",
"zone.js": "^0.11.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "~14.1.0",
"@angular/cli": "~14.1.0",
"@angular/compiler-cli": "^14.1.0",
"@angular/language-service": "^14.1.0",
"@types/file-saver": "^2.0.5",
"@types/jasmine": "4.0.3",
"@types/jasminewd2": "~2.0.10",
"@types/jquery": "^3.5.14",
"@types/node": "~18.6.1",
"jasmine-core": "~4.3.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"node-sass": "^7.0.1",
"protractor": "~7.0.0",
"ts-mockito": "^2.6.1",
"ts-node": "~10.9.1",
"typescript": "~4.7.4"
}
}
🔥 Exception or Error
./src/main.ts - Error: Module build failed (from ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js):
Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS
./src/polyfills.ts - Error: Module build failed (from ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js):
Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS
./node_modules/css-loader/dist/runtime/api.js - Error: Module build failed (from ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js):
Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS
./node_modules/css-loader/dist/runtime/noSourceMaps.js - Error: Module build failed (from ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js):
Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS
./src/styles.scss - Error: Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js):
HookWebpackError: Module build failed (from ./node_modules/@angular-devkit/build-angular/src/babel/webpack-loader.js):
Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS
🌍 Your Environment
Angular CLI: 14.1.0
Node: 16.15.0
Package Manager: npm 8.5.5
OS: linux x64
Angular: 14.1.0
... animations, cdk, cli, common, compiler, compiler-cli, core
... forms, language-service, platform-browser
... platform-browser-dynamic, pwa, router, service-worker
Package Version
@angular-devkit/architect 0.1401.0
@angular-devkit/build-angular 14.1.0
@angular-devkit/core 14.1.0
@angular-devkit/schematics 14.1.0
@schematics/angular 14.1.0
rxjs 6.6.7
typescript 4.7.4
The text was updated successfully, but these errors were encountered: