Skip to content

Commit

Permalink
Merge pull request open-horizon#37 from blakep7/main
Browse files Browse the repository at this point in the history
Issue open-horizon#36 - Feature Request: Create build pipeline to build and publi…
  • Loading branch information
bencourliss committed Jun 22, 2023
2 parents da72b78 + e0a477e commit ff2e05b
Showing 1 changed file with 89 additions and 0 deletions.
89 changes: 89 additions & 0 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# Name of the workflow
name: build-push

# This workflow triggers on any push (or merge) to the listed branch(es)
on:
push:
branches:
- main

# Variables available to all jobs
env:
DOCKER_REGISTRY: ${{ vars.DOCKERHUB_REPO }}
RUN_NUMBER: ${{ github.run_number }}
RUN_NUMBER_OFFSET: ${{ vars.RUN_NUMBER_OFFSET }}

# Jobs that will run when the workflow is triggered
jobs:
# Build FDO-Support and pushes it to Dockerhub
build-push:
runs-on: ubuntu-20.04

# Environment variables available to all steps
env:
GOPATH: ${{ github.workspace }}/go
REPO_DIR: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}
FDO_DOCKER_IMAGE: fdo-owner-services

# Executed sequentially when job runs
steps:
# Offset our version build number to prevent collisions
- name: Offset Build Number
id: offset
run: |
echo "BUILD_NUMBER=$(($RUN_NUMBER + $RUN_NUMBER_OFFSET))" >> "$GITHUB_OUTPUT"
# Upgrade Docker engine version, needed for building images.
- name: Install Latest Docker Version
run: |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce
# Authenticate Dockerhub to allow pushing to our image repo
- name: Login to Dockerhub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_TOKEN }}

# Checkout our Github repo
- name: Checkout Github Repo
uses: actions/checkout@v3
with:
path: go/src/github.com/${{ github.repository }}

# Prepare the environment
- name: Set up golang 1.19
uses: actions/setup-go@v2
with:
go-version: '1.19'
check-latest: true

# Configure version variables for later steps, stored in our workflow env. variables
- name: Config Version Variables
id: config-version
run: |
cd ${REPO_DIR}
echo "VERSION=$(sed -n 's/export VERSION ?= //p' Makefile | cut -d '$' -f 1)" >> $GITHUB_OUTPUT
# Compile FDO-Support and Build Docker Images
- name: Compile and Build Docker Images
run: |
cd ${REPO_DIR}
make clean
make
env:
VERSION: '${{ steps.config-version.outputs.VERSION }}-${{ steps.offset.outputs.BUILD_NUMBER }}'

# Push Docker Images to Dockerhub
- name: Push Image to Dockerhub
run: |
docker push ${DOCKER_REGISTRY}/${FDO_DOCKER_IMAGE}:${VERSION}
if [[ $GITHUB_REF == 'refs/heads/main' ]]; then \
docker tag ${DOCKER_REGISTRY}/${FDO_DOCKER_IMAGE}:${VERSION} ${DOCKER_REGISTRY}/${FDO_DOCKER_IMAGE}:testing && \
docker push ${DOCKER_REGISTRY}/${FDO_DOCKER_IMAGE}:testing; \
fi
env:
VERSION: '${{ steps.config-version.outputs.VERSION }}-${{ steps.offset.outputs.BUILD_NUMBER }}'

0 comments on commit ff2e05b

Please sign in to comment.