name: reusable-dev-build on: workflow_call: inputs: uploaded-binary-name: required: false type: string default: "consul-bin" runs-on: description: An expression indicating which kind of runners to use. required: true type: string repository-name: required: true type: string branch-name: required: false type: string default: "" go-arch: required: false type: string default: "" go-version: required: true type: string secrets: elevated-github-token: required: true jobs: build: runs-on: ${{ fromJSON(inputs.runs-on) }} steps: # NOTE: This is used for nightly job of building release branch. - name: Checkout branch ${{ inputs.branch-name }} uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 with: ref: ${{ inputs.branch-name }} if: inputs.branch-name != '' - name: Checkout code uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 if: inputs.branch-name == '' # NOTE: This step is specifically needed for ENT. It allows us to access the required private HashiCorp repos. - name: Setup Git if: ${{ endsWith(inputs.repository-name, '-enterprise') }} run: git config --global url."https://${{ secrets.elevated-github-token }}:@github.com".insteadOf "https://github.com" - uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1 with: go-version: ${{ inputs.go-version }} - name: Build env: GOARCH: ${{ inputs.goarch }} run: make dev # save dev build to pass to downstream jobs - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 with: name: ${{inputs.uploaded-binary-name}} path: ./bin/consul