-
Notifications
You must be signed in to change notification settings - Fork 4
102 lines (96 loc) · 4.09 KB
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- '0.17'
- '0.17/alpine'
- '0.15'
- '0.15/alpine'
fail-fast: false
steps:
- name: Set up Docker Buildx
uses: crazy-max/ghaction-docker-buildx@v1
- name: Checkout
uses: actions/checkout@v2
- name: Prepare Docker build
id: prepare
run: |
function version { echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }'; }
BITCOIN_GOLD_VERSION=${{matrix.version}}
LATEST_BITCOIN_GOLD_MAJOR_VERSION=$(ls | grep 0 | sort -n | tail -n 1)
PLATFORMS="linux/amd64"
PUSH=false
REPO=uphold/bitcoin-gold
TAGS=()
if [[ $GITHUB_REF == refs/tags/* ]]; then
TAG=${GITHUB_REF#refs/tags/}
PUSH=true
if [[ ${BITCOIN_GOLD_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}) -ne $(version ${BITCOIN_GOLD_VERSION}) ]; then
echo "Skipping build of base image $BITCOIN_GOLD_VERSION/ as ${TAG} is targeted at ${TAG_MAJOR_MINOR}/"
exit 0
fi
else
TAGS=("$REPO:${BITCOIN_GOLD_VERSION/\//-}")
if [ $(version ${BITCOIN_GOLD_VERSION}) -ge $(version ${LATEST_BITCOIN_GOLD_MAJOR_VERSION}) ]; then
echo "Version $(version ${BITCOIN_GOLD_VERSION}) is greater than or equal to $(version ${LATEST_BITCOIN_GOLD_MAJOR_VERSION}), tagging as latest"
if [[ ${BITCOIN_GOLD_VERSION} != *"alpine"* ]]; then
TAGS+=("$REPO:latest")
else
TAGS+=("$REPO:alpine")
fi
fi
if [ $GITHUB_REF == "refs/heads/master" ]; then
PUSH=true
fi
fi
if [[ ${BITCOIN_GOLD_VERSION} != *"alpine"* ]] && [ $(version ${BITCOIN_GOLD_VERSION}) -ge $(version "0.17") ]; 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=push::${PUSH}
echo ::set-output name=tags::${TAGS[@]}
echo "build=true" >> $GITHUB_ENV
- if: env.build == 'true'
name: Login into Docker Hub
env:
DOCKER_HUB_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }}
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
run: |
docker login --username ${DOCKER_HUB_USERNAME} --password ${DOCKER_HUB_PASSWORD}
- if: env.build == 'true'
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 }}/
- if: env.build == 'true'
name: Clear Docker credentials
run: |
rm -f ${HOME}/.docker/config.json