-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.config.mk
30 lines (26 loc) · 1.3 KB
/
common.config.mk
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
# Copyright © 2021 Luther Systems, Ltd. All right reserved.
# config.mk
#
# General project configuration that configures make targets and tracks
# dependency versions.
# PROEJECT and VERSION are attached to docker images and phylum deployment
# artifacts created during the build process.
PROJECT=shiroclient-sdk-go
# These variables control the version numbers for parts of the LEIA platform
# and should be kept up-to-date to leverage the latest platform features.
# See release notes: https://docs.luthersystems.com/luther/platform/release-notes
SUBSTRATE_VERSION=v2.205.0
# A golang module proxy server can greatly help speed up docker builds but the
# official proxy at https://proxy.golang.org only works for public modules.
# When your application needs private go module dependencies consider running a
# local athens-proxy server with an ssh/http configuration which can access
# private source repositories, otherwise set GOPRIVATE (or GONOPROXY and
# GONOSUMDB) if private modules are needed. Though be aware that GOPRIVATE
# requires credentials (e.g. for github ssh) be available during builds which
# complicates things considerably.
# https://docs.gomods.io/
# https://golang.org/ref/mod#private-modules
GOPROXY ?= https://proxy.golang.org
GOPRIVATE ?=
GONOPROXY ?= ${GOPRIVATE}
GONOSUMDB ?= ${GOPRIVATE}