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
kubernetes-dashboard build differs from parallelism #3234
Comments
|
The part that differs is from Z.run(["$templateCache",function(a){a.put("common/components/togglehiddentext/togglehiddentext.html",' <pre ng-if="$ctrl.active" class="kd-pre-block">{{::$ctrl.text}}</pre> <span ng-if="!$ctrl.active"> <span ng-if="::$ctrl.placeholder.length">{{::$ctrl.placeholder}}</span> <input ng-if="::!$ctrl.placeholder.length" type="password" readonly="readonly" flex="nogrow" class="kd-toggle-hidden-text-input" value="{{::$ctrl.text}}"> </span> ')}]);
-Z.run(["$templateCache",function(a){a.put("common/components/uploadfile/uploadfile.html",' <div layout="row" layout-align="space-between start"> <input id="fileInput" type="file" class="ng-hide"> <div flex="auto"> <md-input-container class="md-block kd-upload-file-container"> <label>{{label}}</label> <input id="textInput" ng-model="fileName" ng-readonly="true" required md-no-asterisk> </md-input-container> </div> <md-button id="uploadButton" class="md-primary kd-upload-button" aria-label="attach_file"> <label class="kd-upload-label"> <md-icon> <i class="material-icons">more_horiz</i> </md-icon> </label> </md-button> </div> ')}]);
Z.run(["$templateCache",function(a){a.put("common/components/warnings/warnings.html",' <div ng-if="$ctrl.warnings.length" class="kd-warnings-container"> <div class="kd-warning-message" ng-repeat="warning in $ctrl.warnings | limitTo: $ctrl.limit"> <md-icon class="material-icons">warning</md-icon> <span class="kd-raw-warning" flex> {{$ctrl.getLocalizedMessage(warning.ErrStatus.message)}} </span> <md-icon ng-click="$ctrl.dismissWarning($index)" class="material-icons kd-dismiss-icon"> close <md-tooltip md-delay="500" md-autohide> \u5ffd\u7565 </md-tooltip> </md-icon> </div> <div class="kd-more-warnings" ng-if="$ctrl.warnings.length > $ctrl.defaultLimit"> <md-button ng-if="$ctrl.limit" ng-click="$ctrl.toggleWarnings()"> <md-icon class="material-icons">expand_more</md-icon> {{$ctrl.getShowMoreLabel()}} </md-button> <md-button ng-if="!$ctrl.limit" ng-click="$ctrl.toggleWarnings()"> <md-icon class="material-icons">expand_less</md-icon> {{$ctrl.getShowLessLabel()}} </md-button> <span flex></span> <md-button ng-click="$ctrl.dismissWarnings()">\u5ffd\u7565\u6240\u6709</md-button> </div> </div> ')}]);
+Z.run(["$templateCache",function(a){a.put("common/components/uploadfile/uploadfile.html",' <div layout="row" layout-align="space-between start"> <input id="fileInput" type="file" class="ng-hide"> <div flex="auto"> <md-input-container class="md-block kd-upload-file-container"> <label>{{label}}</label> <input id="textInput" ng-model="fileName" ng-readonly="true" required md-no-asterisk> </md-input-container> </div> <md-button id="uploadButton" class="md-primary kd-upload-button" aria-label="attach_file"> <label class="kd-upload-label"> <md-icon> <i class="material-icons">more_horiz</i> </md-icon> </label> </md-button> </div> ')}]);It seems to be an issue with random ordering. |
|
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
|
a workaround for this issue is to do taskset 1 node node_modules/gulp/bin/gulp.js build |
|
/remove-lifecycle stale |
|
This should be resolved when we switch to the migration build, which should happen quite soon. |
|
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
|
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
|
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
|
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
|
/lifecycle frozen |
|
We have changed build system with the new version. Please reopen if the issue persists. |
Environment
Steps to reproduce
On openSUSE or Debian do
Observed result
produces different RPMs for most runs
Expected result
should produce identical RPMs in each run
Comments
This is in addition to #3233
If you do not apply this patch, you have to omit the line with
-rtcBuilding with
-j1instead of-j2already gives reproducible results.The text was updated successfully, but these errors were encountered: