Add to allow for supporting dynamic module versions and source #225
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build-pr | |
| on: | |
| pull_request: | |
| branches-ignore: | |
| - pre-release | |
| env: | |
| GOPROXY: https://proxy.golang.org/ | |
| jobs: | |
| generate-provider-schemas: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| - name: Set up Go | |
| uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
| with: | |
| go-version-file: ".go-version" | |
| - name: Generate provider schemas | |
| run: | | |
| go generate ./internal/schemas | |
| du -h -s ./internal/schemas/data | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - { goos: "linux", goarch: "386" } | |
| - { goos: "linux", goarch: "amd64" } | |
| - { goos: "linux", goarch: "arm" } | |
| - { goos: "linux", goarch: "arm64" } | |
| - { goos: "freebsd", goarch: "386" } | |
| - { goos: "freebsd", goarch: "amd64" } | |
| - { goos: "freebsd", goarch: "arm" } | |
| - { goos: "openbsd", goarch: "386" } | |
| - { goos: "openbsd", goarch: "amd64" } | |
| - { goos: "solaris", goarch: "amd64" } | |
| - { goos: "windows", goarch: "386" } | |
| - { goos: "windows", goarch: "amd64" } | |
| - { goos: "windows", goarch: "arm64" } | |
| - { goos: "darwin", goarch: "arm64" } | |
| - { goos: "darwin", goarch: "amd64" } | |
| timeout-minutes: 25 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| - name: Set up Go | |
| uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
| with: | |
| go-version-file: ".go-version" | |
| - name: ${{ matrix.goos }} ${{ matrix.goarch }} build | |
| run: |- | |
| go build \ | |
| -trimpath \ | |
| -buildvcs=false \ | |
| -ldflags "-s -w" |