-
Notifications
You must be signed in to change notification settings - Fork 13
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
Unable to upgrade flutter packages #1560
Comments
how are you running this image? those folders should be generated automatically. so you probably override |
I am running Mend renovate without any special configuration. These are my configuration files values.yaml mend-renovate-ce:
renovate:
mendRnvAcceptTos: y
mendRnvPlatform: github
logLevel: debug
existingSecret: renovate
config: |
module.exports = {
globalExtends: ['github>Sander0542/renovate-config'],
}
ingress:
enabled: true
hosts:
- renovate.domain.com
postgresql:
enabled: true
host: renovate-postgresql
port: 5432
database: renovate
user: renovate
postgresql:
global:
postgresql:
auth:
username: renovate
database: renovate
existingSecret: renovate-postgresql
primary:
networkPolicy:
enabled: false Chart.yaml apiVersion: v2
name: renovate
description: Renovate
type: application
version: 1.0.0
dependencies:
- name: mend-renovate-ce
version: 9.4.0
repository: https://mend.github.io/renovate-ce-ee
- name: postgresql
version: 16.3.5
repository: https://charts.bitnami.com/bitnami default.json {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard"
],
"prHourlyLimit": 0
} |
this is probably related. |
I don't think this is related, because it is still happening with Flutter version 3.27.4. I see a newer version has been upgraded recently, but this error seems more as a problem with file permissions within the image. |
When calling the command
flutter pub upgrade <package>
with this container, the user does not have enough permissions in the.dart_tool
folder.Should the
prepare-tool flutter
command be called in the Dockerfile too? I don't see this for any other frameworks.According to the Flutter prepare tool the exact directory gets created.
https://github.com/containerbase/base/blob/main/src/cli/tools/flutter.ts#L24-L45
https://github.com/containerbase/base/blob/main/src/cli/tools/dart/utils.ts#L6-L28
If this is not the fix. What else can we try to get Renovate working with Flutter (and Dart)?
Flutter (and Dart) support was added in PR #1448
The text was updated successfully, but these errors were encountered: