-
Notifications
You must be signed in to change notification settings - Fork 33
/
Makefile
80 lines (75 loc) · 2.93 KB
/
Makefile
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
# !/usr/bin/make - f
SHELL := /usr/bin/env bash
SED := $(shell [[ `command -v gsed` ]] && echo gsed || echo sed)
REPO_API_URL ?= https://hub.docker.com/v2
REPO_NAMESPACE ?= utensils
REPO_USERNAME ?= utensils
IMAGE_NAME ?= opengl
BASE_IMAGE ?= alpine:3.12
LLVM_VERSION ?= 10
TAG_SUFFIX ?= $(shell echo "-$(BASE_IMAGE)" | $(SED) 's|:|-|g' | $(SED) 's|/|_|g' 2>/dev/null )
VCS_REF := $(shell git rev-parse --short HEAD)
BUILD_DATE := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
PLATFORMS ?= linux/amd64,linux/386,linux/arm64,linux/arm/v7
RELEASES ?= latest stable 20.0.6 20.1.1 20.1.2
STABLE ?= 20.0.6
LATEST ?= 20.1.2
BUILD_PROGRESS ?= auto
BUILD_OUTPUT ?= type=registry
BUILD_TYPE ?= release
BUILD_OPTIMIZATION ?= 3
MICRO_BADGER_URL ?=
# Default target is to build all defined Mesa releases.
.PHONY: default
default: $(STABLE)
.PHONY: all
all: $(RELEASES)
# Build base images for all releases using buildx.
.PHONY: $(RELEASES)
.SILENT: $(RELEASES)
export MICRO_BADGER_URL
export BUILD_OUTPUT
$(RELEASES):
if [ "$(@)" == "stable" ]; \
then \
MESA_VERSION="$(STABLE)"; \
elif [ "$(@)" == "latest" ]; \
then \
MESA_VERSION="$(LATEST)"; \
else \
MESA_VERSION="$(@)"; \
fi; \
docker buildx build \
--build-arg BASE_IMAGE=$(BASE_IMAGE) \
--build-arg BUILD_DATE=$(BUILD_DATE) \
--build-arg BUILD_OPTIMIZATION=$(BUILD_OPTIMIZATION) \
--build-arg BUILD_TYPE=$(BUILD_TYPE) \
--build-arg LLVM_VERSION=$(LLVM_VERSION) \
--build-arg MESA_VERSION="$$MESA_VERSION" \
--build-arg VCS_REF=$(VCS_REF) \
--cache-from $(REPO_NAMESPACE)/$(IMAGE_NAME):$(@)$(TAG_SUFFIX) \
--tag $(REPO_NAMESPACE)/$(IMAGE_NAME):$(@)$(TAG_SUFFIX) \
--tag $(REPO_NAMESPACE)/$(IMAGE_NAME):$(@) \
--platform=$(PLATFORMS) \
--progress=$(BUILD_PROGRESS) \
--output=$(BUILD_OUTPUT) \
--file Dockerfile .
if [ ! -z "$$MICRO_BADGER_URL" ] && [ "$$BUILD_OUTPUT" == "type=registry" ]; \
then \
echo "Triggering MicroBadger WebHook"; \
curl -d "update" "$$MICRO_BADGER_URL"; \
fi
# Update README on DockerHub registry.
.PHONY: push-readme
.SILENT: push-readme
push-readme:
echo "Authenticating to $(REPO_API_URL)"; \
token=$$(curl -s -X POST -H "Content-Type: application/json" -d '{"username": "$(REPO_USERNAME)", "password": "'"$$REPO_PASSWORD"'"}' $(REPO_API_URL)/users/#/ | jq -r .token); \
code=$$(jq -n --arg description "$$(<README.md)" '{"registry":"registry-1.docker.io","full_description": $$description }' | curl -s -o /dev/null -L -w "%{http_code}" $(REPO_API_URL)/repositories/$(REPO_NAMESPACE)/$(IMAGE_NAME)/ -d @- -X PATCH -H "Content-Type: application/json" -H "Authorization: JWT $$token"); \
if [ "$$code" != "200" ]; \
then \
echo "Failed to update README.md"; \
exit 1; \
else \
echo "Success"; \
fi;