forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add Github action to build provider
We want to get rid of the provider-build step in CSE, building the providers in their own repos makes more sense.
- Loading branch information
1 parent
f38066f
commit fa5438b
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Build TF Provider | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21.3 | ||
- name: Install C toolchain | ||
run: | | ||
apt-get update | ||
apt install -y gcc-x86-64-linux-gnu | ||
mkdir bin | ||
- name: Cache node modules | ||
uses: actions/cache@v2 | ||
env: | ||
cache-name: cache-binaries | ||
with: | ||
path: bin | ||
key: ${{ github.sha }} | ||
restore-keys: ${{ github.sha }} | ||
- name: Build Linux binary with Boringcrypto | ||
run: | | ||
CC=x86_64-linux-gnu-gcc CGO_ENABLED=1 GOARCH=amd64 GOOS=linux GOEXPERIMENT=boringcrypto \ | ||
go build -o bin/terraform-provider-azurerm.linux.amd64 . | ||
- name: Verify Boringcrypto | ||
run: | | ||
go run rsc.io/goversion@master -crypto terraform-provider-azurerm.linux.amd64 | grep -q '(boring crypto)' | ||
# boringcrypto isn't available for darwin, so we can also disable CGO. | ||
- name: Build Darwin binary without Boringcrypto | ||
run: | | ||
CGO_ENABLED=0 GOARCH=arm64 GOOS=darwin \ | ||
go build -o bin/terraform-provider-azurerm.darwin.arm64 . | ||
release: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
if: .github.ref == 'refs/heads/main' | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Create Release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: ${{ github.sha }} | ||
artifacts: terraform-provider-azurerm.*.* | ||
makeLatest: true |