mirror of https://github.com/status-im/evmc.git
18 lines
523 B
CMake
18 lines
523 B
CMake
|
# Copyright 2018 Pawel Bylica.
|
||
|
# Licensed under the Apache License, Version 2.0. See the LICENSE file.
|
||
|
|
||
|
# Hunter passwords file used by HunterCacheServers.cmake.
|
||
|
# Do not include directly.
|
||
|
|
||
|
hunter_upload_password(
|
||
|
# REPO_OWNER + REPO = https://github.com/ethereum/hunter-cache
|
||
|
REPO_OWNER ethereum
|
||
|
REPO hunter-cache
|
||
|
|
||
|
# USERNAME = https://github.com/hunter-cache-bot
|
||
|
USERNAME hunter-cache-bot
|
||
|
|
||
|
# PASSWORD = GitHub token saved as a secure environment variable
|
||
|
PASSWORD "$ENV{HUNTER_CACHE_TOKEN}"
|
||
|
)
|