Merge pull request #2050 from aluzzardi/disable-platform-field

temporarily disable the `platform` field.
This commit is contained in:
Andrea Luzzardi 2022-04-05 12:20:14 -07:00 committed by GitHub
commit 7d2f279c59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 23 deletions

2
ci.cue
View File

@ -18,7 +18,7 @@ dagger.#Plan & {
// to avoid the performance hit caused by qemu (linter goes from <3s to >3m when arch is x86)
// Uncomment if running locally on Mac M1 to bypass qemu
// platform: "linux/aarch64"
platform: "linux/amd64"
// platform: "linux/amd64"
client: filesystem: ".": read: exclude: [
"bin",

View File

@ -39,7 +39,8 @@ package dagger
}
// Configure platform execution
platform?: string
// FIXME: temporarily disabled
// platform?: string
// Execute actions in containers
actions: {

View File

@ -82,9 +82,10 @@ func Load(ctx context.Context, cfg Config) (*Plan, error) {
p.fillAction()
if err := p.configPlatform(); err != nil {
return nil, err
}
// FIXME: `platform` field temporarily disabled
// if err := p.configPlatform(); err != nil {
// return nil, err
// }
if err := p.prepare(ctx); err != nil {
return nil, err
@ -108,27 +109,28 @@ func (p *Plan) Action() *Action {
// configPlatform load the platform specified in the context
// Buildkit will then run every operation using that platform
// If platform is not define, context keep default platform
func (p *Plan) configPlatform() error {
platformField := p.source.Lookup("platform")
// FIXME: `platform` field temporarily disabled
// func (p *Plan) configPlatform() error {
// platformField := p.source.Lookup("platform")
// Ignore if platform is not set in `#Plan`
if !platformField.Exists() {
return nil
}
// // Ignore if platform is not set in `#Plan`
// if !platformField.Exists() {
// return nil
// }
// Convert platform to string
platform, err := platformField.String()
if err != nil {
return err
}
// // Convert platform to string
// platform, err := platformField.String()
// if err != nil {
// return err
// }
// Set platform to context
err = p.context.Platform.SetString(platform)
if err != nil {
return err
}
return nil
}
// // Set platform to context
// err = p.context.Platform.SetString(platform)
// if err != nil {
// return err
// }
// return nil
// }
// prepare executes the pre-run hooks of tasks
func (p *Plan) prepare(ctx context.Context) error {