docker-bitcoin-core/.github/workflows/build.yaml

143 lines
4.9 KiB
YAML
Raw Normal View History

2020-06-07 15:50:21 +00:00
name: build
2020-06-08 10:55:29 +00:00
on: [push, pull_request]
2020-06-07 15:50:21 +00:00
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- '0.20'
- '0.20/alpine'
- '0.19'
- '0.19/alpine'
- '0.18'
- '0.18/alpine'
- '0.17'
- '0.17/alpine'
- '0.16'
- '0.16/alpine'
- '0.13'
- '0.13/alpine'
- '0.12'
- '0.12/alpine'
- '0.11'
- '0.11/alpine'
steps:
- name: Set up Docker Buildx
uses: crazy-max/ghaction-docker-buildx@v1
- name: Checkout
uses: actions/checkout@v2
2020-06-07 15:50:21 +00:00
- name: Prepare Docker build
id: prepare
run: |
function version { echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }'; }
BITCOIN_VERSION=${{matrix.version}}
LATEST_BITCOIN_MAJOR_VERSION=$(ls | grep 0 | sort -n | tail -n 1)
PLATFORMS="linux/amd64"
PUSH=false
REPO=ruimarinho/bitcoin-core
TAGS=()
2020-06-07 15:50:21 +00:00
if [[ $GITHUB_REF == refs/tags/* ]]; then
TAG=${GITHUB_REF#refs/tags/}
2020-06-08 00:36:42 +00:00
PUSH=true
2020-06-07 15:50:21 +00:00
if [[ ${BITCOIN_VERSION} == *"alpine"* ]]; then
TAGS+=("$REPO:$TAG-alpine")
else
TAGS+=("$REPO:$TAG")
fi
TAG_MAJOR_MINOR=$(echo $TAG | cut -c -4)
if [ $(version ${TAG_MAJOR_MINOR}) -gt $(version ${BITCOIN_VERSION}) ]; then
echo "Skipping build of base image $BITCOIN_VERSION/ as ${TAG} is targeted at ${TAG_MAJOR_MINOR}/"
exit 1
fi
2020-06-08 01:08:10 +00:00
else
TAGS=("$REPO:${BITCOIN_VERSION/\//-}")
if [ $(version ${BITCOIN_VERSION}) -ge $(version ${LATEST_BITCOIN_MAJOR_VERSION}) ] && [[ ${BITCOIN_VERSION} != *"alpine"* ]]; then
echo "Version $(version ${BITCOIN_VERSION}) is greater than or equal to $(version ${LATEST_BITCOIN_MAJOR_VERSION}), tagging as latest"
2020-06-08 00:36:42 +00:00
TAGS+=("$REPO:latest")
fi
2020-06-08 01:08:10 +00:00
if [ $GITHUB_REF == "refs/heads/master" ]; then
PUSH=true
fi
2020-06-07 15:50:21 +00:00
fi
if [[ ${BITCOIN_VERSION} != *"alpine"* ]] && [ $(version ${BITCOIN_VERSION}) -ge $(version "0.19") ]; then
PLATFORMS="linux/amd64,linux/arm/v7,linux/arm64"
fi
echo ::set-output name=build_date::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
echo ::set-output name=docker_platforms::${PLATFORMS}
echo ::set-output name=docker_username::ruimarinho
echo ::set-output name=push::${PUSH}
echo ::set-output name=tags::${TAGS[@]}
- name: Login into Docker Hub
env:
DOCKER_HUB_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }}
run: |
echo "${DOCKER_HUB_PASSWORD}" | docker login --username "${{ steps.prepare.outputs.docker_username }}" --password-stdin
- name: Build Docker image
run: |
TAGS=(${{ steps.prepare.outputs.tags }})
echo "Build date: ${{ steps.prepare.outputs.build_date }}"
echo "Docker platform: ${{ steps.prepare.outputs.docker_platforms }}"
echo "Push: ${{ steps.prepare.outputs.push }}"
echo "Tags: ${{ steps.prepare.outputs.tags }}"
echo docker buildx build --platform ${{ steps.prepare.outputs.docker_platforms }} \
--output "type=image,push=${{steps.prepare.outputs.push}}" \
--progress=plain \
--build-arg "BUILD_DATE=${{ steps.prepare.outputs.build_date }}" \
--build-arg "VCS_REF=${GITHUB_SHA::8}" \
$(printf "%s" "${TAGS[@]/#/ --tag }" ) \
${{ matrix.version }}/
docker buildx build --platform ${{ steps.prepare.outputs.docker_platforms }} \
--output "type=image,push=${{steps.prepare.outputs.push}}" \
--progress=plain \
--build-arg "BUILD_DATE=${{ steps.prepare.outputs.build_date }}" \
--build-arg "VCS_REF=${GITHUB_SHA::8}" \
$(printf "%s" "${TAGS[@]/#/ --tag }" ) \
${{ matrix.version }}/
- name: Check Docker image manifest
run: |
sudo apt-get install jq
2020-06-07 15:50:21 +00:00
PUSH=${{ steps.prepare.outputs.push }}
if [ "${PUSH}" = false ]; then
echo "Image has not been pushed, skipping..."
exit 0
fi
TAGS=(${{ steps.prepare.outputs.tags }})
for TAG in "${TAGS[@]}"; do
echo "Inspecting ${TAG}"
docker buildx imagetools inspect "${TAG}"
if docker buildx imagetools inspect "${TAG}" --raw | grep -q manifests; then
docker buildx imagetools inspect "${TAG}" --raw | jq -r '.manifests[].digest' | xargs -I sha docker run ruimarinho/bitcoin-core@sha --version | grep "Bitcoin Core"
else
docker run ${TAG} --version | grep "Bitcoin Core"
fi
2020-06-07 15:50:21 +00:00
done
- name: Clear Docker credentials
run: |
rm -f ${HOME}/.docker/config.json