Skip to content

Commit

Permalink
rename dry-run branch name filtering
Browse files Browse the repository at this point in the history
s/testnet/test-devnet/g to remove any confusion
  • Loading branch information
ognots committed Mar 22, 2019
1 parent 2d93c98 commit b87348b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Expand Up @@ -603,7 +603,7 @@ workflows:
only:
# - /^\d+\.\d+\.\d+$/
# @TODO remove the following line and uncomment above after deploy testing complete
- /^(testnet\-)*\d+\.\d+\.\d+$/
- /^(test\-devnet\-)*\d+\.\d+\.\d+$/

- build_linux:
filters:
Expand All @@ -614,7 +614,7 @@ workflows:
only:
# - /^\d+\.\d+\.\d+$/
# @TODO remove the following line and uncomment above after deploy testing complete
- /^(testnet\-)*\d+\.\d+\.\d+$/
- /^(test\-devnet\-)*\d+\.\d+\.\d+$/
- publish_release:
requires:
- build_linux
Expand All @@ -627,7 +627,7 @@ workflows:
only:
# - /^\d+\.\d+\.\d+$/
# @TODO remove the following line and uncomment above after deploy testing complete
- /^(testnet\-)*\d+\.\d+\.\d+$/
- /^(test\-devnet\-)*\d+\.\d+\.\d+$/

build_nightly_devnet:
triggers:
Expand Down Expand Up @@ -671,7 +671,7 @@ workflows:
only:
# - /^\d+\.\d+\.\d+$/
# @TODO remove the following line and uncomment above after deploy testing complete
- /^(testnet\-)*\d+\.\d+\.\d+$/
- /^(test\-devnet\-)*\d+\.\d+\.\d+$/

- build_faucet_and_genesis:
requires:
Expand All @@ -684,7 +684,7 @@ workflows:
only:
# - /^\d+\.\d+\.\d+$/
# @TODO remove the following line and uncomment above after deploy testing complete
- /^(testnet\-)*\d+\.\d+\.\d+$/
- /^(test\-devnet\-)*\d+\.\d+\.\d+$/

- build_docker_img:
user_devnet: true
Expand All @@ -699,7 +699,7 @@ workflows:
only:
# - /^\d+\.\d+\.\d+$/
# @TODO remove the following line and uncomment above after deploy testing complete
- /^(testnet\-)*\d+\.\d+\.\d+$/
- /^(test\-devnet\-)*\d+\.\d+\.\d+$/

- trigger_user_devnet_deploy:
requires:
Expand All @@ -712,4 +712,4 @@ workflows:
only:
# - /^\d+\.\d+\.\d+$/
# @TODO remove the following line and uncomment above after deploy testing complete
- /^(testnet\-)*\d+\.\d+\.\d+$/
- /^(test\-devnet\-)*\d+\.\d+\.\d+$/
6 changes: 3 additions & 3 deletions DEPLOY.md
Expand Up @@ -24,7 +24,7 @@ for Filecoin Developers, Infrastructure Engineers and Testers.

A release and deploy to the User Devnet is triggered by pushing a git tag meeting the following regex patterns
- `/^\d+\.\d+\.\d+$/`
- `/^testnet\-\d+\.\d+\.\d+$/ # @TODO remove this after deploy testing complete`
- `/^test\-devnet\-\d+\.\d+\.\d+$/ # @TODO remove this after deploy testing complete`

### Deploy instructions

Expand All @@ -38,10 +38,10 @@ The nightly release should be tested prior to this.

2. Create and push a git tag conforming to the expected tag schema listed above
```
git tag -a testnet-0.1.0 <sha1-of-commit> -m "$(date -u '+%Y-%m-%dT%H:%M:%S%z')"
git tag -a test-devnet-0.1.0 <sha1-of-commit> -m "$(date -u '+%Y-%m-%dT%H:%M:%S%z')"
OR
git tag -a 0.1.0 <sha1-of-commit> -m "$(date -u '+%Y-%m-%dT%H:%M:%S%z')"
git push origin testnet-0.1.0
git push origin test-devnet-0.1.0
```
This will commence the release and deploy process in [CircleCI project](https://circleci.com/gh/filecoin-project/go-filecoin)

Expand Down

0 comments on commit b87348b

Please sign in to comment.