147 lines
5.2 KiB
YAML
147 lines
5.2 KiB
YAML
# NOTE: this workflow builds Consul binaries on multiple architectures for PRs.
|
|
# It is aimed at checking new commits don't introduce any breaking build changes.
|
|
name: build-distros
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
# Push events on the main branch
|
|
- main
|
|
- release/**
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
GOTAGS: ${{ endsWith(github.repository, '-enterprise') && 'consulent' || '' }}
|
|
|
|
jobs:
|
|
setup:
|
|
name: Setup
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
compute-small: ${{ steps.setup-outputs.outputs.compute-small }}
|
|
compute-medium: ${{ steps.setup-outputs.outputs.compute-medium }}
|
|
compute-large: ${{ steps.setup-outputs.outputs.compute-large }}
|
|
compute-xl: ${{ steps.setup-outputs.outputs.compute-xl }}
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
|
|
- id: setup-outputs
|
|
name: Setup outputs
|
|
run: ./.github/scripts/get_runner_classes.sh
|
|
|
|
check-go-mod:
|
|
needs:
|
|
- setup
|
|
uses: ./.github/workflows/reusable-check-go-mod.yml
|
|
with:
|
|
runs-on: ${{ needs.setup.outputs.compute-medium }}
|
|
repository-name: ${{ github.repository }}
|
|
secrets:
|
|
elevated-github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
|
|
|
build-386:
|
|
needs:
|
|
- setup
|
|
- check-go-mod
|
|
env:
|
|
XC_OS: "freebsd linux windows"
|
|
runs-on: ${{ fromJSON(needs.setup.outputs.compute-xl) }}
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
|
|
|
|
# NOTE: This step is specifically needed for ENT. It allows us to access the required private HashiCorp repos.
|
|
- name: Setup Git
|
|
if: ${{ endsWith(github.repository, '-enterprise') }}
|
|
run: git config --global url."https://${{ secrets.ELEVATED_GITHUB_TOKEN }}:@github.com".insteadOf "https://github.com"
|
|
|
|
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- name: Build
|
|
run: |
|
|
for os in $XC_OS; do
|
|
GOOS="$os" GOARCH=386 CGO_ENABLED=0 go build -tags "${{ env.GOTAGS }}"
|
|
done
|
|
|
|
build-amd64:
|
|
needs:
|
|
- setup
|
|
- check-go-mod
|
|
env:
|
|
XC_OS: "darwin freebsd linux solaris windows"
|
|
runs-on: ${{ fromJSON(needs.setup.outputs.compute-xl) }}
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
|
|
|
|
# NOTE: This step is specifically needed for ENT. It allows us to access the required private HashiCorp repos.
|
|
- name: Setup Git
|
|
if: ${{ endsWith(github.repository, '-enterprise') }}
|
|
run: git config --global url."https://${{ secrets.ELEVATED_GITHUB_TOKEN }}:@github.com".insteadOf "https://github.com"
|
|
|
|
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- name: Build
|
|
run: |
|
|
for os in $XC_OS; do
|
|
GOOS="$os" GOARCH=amd64 CGO_ENABLED=0 go build -tags "${{ env.GOTAGS }}"
|
|
done
|
|
|
|
build-arm:
|
|
needs:
|
|
- setup
|
|
- check-go-mod
|
|
runs-on: ${{ fromJSON(needs.setup.outputs.compute-xl) }}
|
|
env:
|
|
CGO_ENABLED: 1
|
|
GOOS: linux
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
|
|
|
|
# NOTE: This step is specifically needed for ENT. It allows us to access the required private HashiCorp repos.
|
|
- name: Setup Git
|
|
if: ${{ endsWith(github.repository, '-enterprise') }}
|
|
run: git config --global url."https://${{ secrets.ELEVATED_GITHUB_TOKEN }}:@github.com".insteadOf "https://github.com"
|
|
|
|
|
|
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- run: |
|
|
sudo apt-get update --allow-releaseinfo-change-suite --allow-releaseinfo-change-version && sudo apt-get install -y gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu
|
|
|
|
- run: CC=arm-linux-gnueabi-gcc GOARCH=arm GOARM=5 go build -tags "${{ env.GOTAGS }}"
|
|
- run: CC=arm-linux-gnueabihf-gcc GOARCH=arm GOARM=6 go build -tags "${{ env.GOTAGS }}"
|
|
- run: CC=aarch64-linux-gnu-gcc GOARCH=arm64 go build -tags "${{ env.GOTAGS }}"
|
|
|
|
# This is job is required for branch protection as a required gihub check
|
|
# because GitHub actions show up as checks at the job level and not the
|
|
# workflow level. This is currently a feature request:
|
|
# https://github.com/orgs/community/discussions/12395
|
|
#
|
|
# This job must:
|
|
# - be placed after the fanout of a workflow so that everything fans back in
|
|
# to this job.
|
|
# - "need" any job that is part of the fan out / fan in
|
|
# - implement the if logic because we have conditional jobs
|
|
# (go-test-enteprise) that this job needs and this would potentially get
|
|
# skipped if a previous job got skipped. So we use the if clause to make
|
|
# sure it does not get skipped.
|
|
|
|
build-distros-success:
|
|
needs:
|
|
- setup
|
|
- check-go-mod
|
|
- build-386
|
|
- build-amd64
|
|
- build-arm
|
|
runs-on: ${{ fromJSON(needs.setup.outputs.compute-small) }}
|
|
if: |
|
|
(always() && ! cancelled()) &&
|
|
!contains(needs.*.result, 'failure') &&
|
|
!contains(needs.*.result, 'cancelled')
|
|
steps:
|
|
- run: echo "build-distros succeeded"
|