You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
Currently, the suggested goreleaser configuration is as below, and go 1.17 builds almost the entire matrix. But the problem is that some of the flavours are not officially supported/endorsed by Terraform, and building them wastes resources and CI credits.
goos:
- freebsd
- windows
- linux
- darwingoarch:
- amd64
- '386'
- arm
- arm64ignore:
- goos: darwingoarch: '386'
According to the provider docs that link to this project, only the following flavours need to be built:
goos\goarch
amd64
386
arm
arm64
darwin
x
x
freebsd
x
x
linux
x
x
x
x
windows
x
x
Looking at what various providers push to Terraform registry, it's the same matrix, but with one addition: freebsd_arm.
For example, here and here. Hence the suggested list of explicit ignores to align with the current state.
The text was updated successfully, but these errors were encountered:
Suggestion
Add explicit ignores to goreleaser config for the following flavours.
Analysis
Currently, the suggested goreleaser configuration is as below, and go 1.17 builds almost the entire matrix. But the problem is that some of the flavours are not officially supported/endorsed by Terraform, and building them wastes resources and CI credits.
According to the provider docs that link to this project, only the following flavours need to be built:
Looking at what various providers push to Terraform registry, it's the same matrix, but with one addition:
freebsd_arm
.For example, here and here. Hence the suggested list of explicit ignores to align with the current state.
The text was updated successfully, but these errors were encountered: