Allow compiler version to be pinned consistently (#832)
* allow compiler version to be pinned consistently * set pin to v1.6.14 to make it equivalent to current master
This commit is contained in:
parent
e124035772
commit
6e9bdf1d7e
|
@ -9,7 +9,7 @@ on:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
cache_nonce: 0 # Allows for easily busting actions/cache caches
|
cache_nonce: 0 # Allows for easily busting actions/cache caches
|
||||||
nim_version: v1.6.14
|
nim_version: pinned
|
||||||
|
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
|
|
|
@ -6,7 +6,7 @@ on:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
cache_nonce: 0 # Allows for easily busting actions/cache caches
|
cache_nonce: 0 # Allows for easily busting actions/cache caches
|
||||||
nim_version: v1.6.14, v1.6.16, v1.6.18
|
nim_version: pinned, v1.6.16, v1.6.18
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
matrix:
|
matrix:
|
||||||
|
|
24
Makefile
24
Makefile
|
@ -5,6 +5,30 @@
|
||||||
# at your option. This file may not be copied, modified, or distributed except
|
# at your option. This file may not be copied, modified, or distributed except
|
||||||
# according to those terms.
|
# according to those terms.
|
||||||
|
|
||||||
|
# This is the Nim version used locally and in regular CI builds.
|
||||||
|
# Can be a specific version tag, a branch name, or a commit hash.
|
||||||
|
# Can be overridden by setting the NIM_COMMIT environment variable
|
||||||
|
# before calling make.
|
||||||
|
#
|
||||||
|
# For readability in CI, if NIM_COMMIT is set to "pinned",
|
||||||
|
# this will also default to the version pinned here.
|
||||||
|
#
|
||||||
|
# If NIM_COMMIT is set to "nimbusbuild", this will use the
|
||||||
|
# version pinned by nimbus-build-system.
|
||||||
|
PINNED_NIM_VERSION := v1.6.14
|
||||||
|
|
||||||
|
ifeq ($(NIM_COMMIT),)
|
||||||
|
NIM_COMMIT := $(PINNED_NIM_VERSION)
|
||||||
|
else ifeq ($(NIM_COMMIT),pinned)
|
||||||
|
NIM_COMMIT := $(PINNED_NIM_VERSION)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(NIM_COMMIT),nimbusbuild)
|
||||||
|
undefine NIM_COMMIT
|
||||||
|
else
|
||||||
|
export NIM_COMMIT
|
||||||
|
endif
|
||||||
|
|
||||||
SHELL := bash # the shell used internally by Make
|
SHELL := bash # the shell used internally by Make
|
||||||
|
|
||||||
# used inside the included makefiles
|
# used inside the included makefiles
|
||||||
|
|
Loading…
Reference in New Issue