-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #396 from MatrixAI/feature-testnet-deployment
Testnet Deployment via CI/CD
- Loading branch information
Showing
10 changed files
with
394 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,30 @@ | ||
DEBUG= | ||
# Unused atm (jest sets this to `test`) | ||
NODE_ENV=development | ||
TMPDIR=$TMPDIR | ||
#To allow testing different executables in the bin tests | ||
#PK_TEST_DOCKER_IMAGE=$image #Specify the docker image that the `docker-run.sh` uses | ||
#PK_TEST_COMMAND=scripts/docker-run.sh #Specify the executable we want to test against | ||
#PK_TEST_COMMAND_DOCKER=DOCKER #Specify if the test is for docker for filtering relevant tests | ||
|
||
# Debug node modules - https://nodejs.org/api/cli.html#node_debugmodule | ||
# NODE_DEBUG= | ||
|
||
# Debug node native modules - https://nodejs.org/api/cli.html#node_debug_nativemodule | ||
# NODE_DEBUG_NATIVE= | ||
|
||
# Path to PK executable to override tests/bin target | ||
# PK_TEST_COMMAND= | ||
|
||
# If set, indicates that `PK_TEST_COMMAND` is targetting docker | ||
# PK_TEST_COMMAND_DOCKER= | ||
# Accessing AWS for testnet.polykey.io and mainnet.polykey.io deployment | ||
AWS_DEFAULT_REGION='ap-southeast-2' | ||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
|
||
# Path to container registry authentication file used by `skopeo` | ||
# The file has the same contents as `DOCKER_AUTH_CONFIG` | ||
# Use this command to acquire the auth file at `./tmp/auth.json`: | ||
# ``` | ||
# printf 'PASSWORD' | skopeo login \ | ||
# --username 'USERNAME' \ | ||
# --password-stdin \ | ||
# $CI_REGISTRY_IMAGE \ | ||
# --authfile=./tmp/auth.json | ||
# ``` | ||
# REGISTRY_AUTH_FILE= |
Oops, something went wrong.