-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
display version numbers in builds #1128
Changes from 10 commits
d6ad65a
ce57280
55a60d5
61b61ec
17da820
114a516
ad5fc84
26804c7
9ede933
6aa477e
0413cba
5cdf1a7
c8c1271
c3e9301
10aceda
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,15 +101,17 @@ First [Build Gaia](#build-gaia) and [Download the testnet configurations](#downl | |
Here's an example build command: | ||
|
||
```bash | ||
yarn run build --commit=HEAD --network=gaia-7001 | ||
yarn run build --commit=HEAD --network=gaia-7005 | ||
``` | ||
|
||
You can specify `--help` to see all options with explanations. | ||
|
||
Run the app. | ||
To unzip the app: | ||
|
||
```bash | ||
open builds/Cosmos-{platform}-x64/Cosmos.app | ||
open builds/Voyager/Cosmos_Voyager-v0.9.4-Linux.tar.gz | ||
open builds/Voyager/Cosmos_Voyager-v0.9.4-macOS.zip | ||
open builds/Voyager/Cosmos_Voyager-v0.9.4-Windows.zip | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this tested? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not sure what you mean. if the user is in the correct directory it should open and unzip the files.
is there something i need to be looking out for that i'm not thinking of? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is no There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I added a proposal, let me know what you think. |
||
``` | ||
|
||
To test if your build worked run: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ let testRoot = "./test/unit/tmp/test_root/" | |
|
||
function mockGenesis() { | ||
process.env.COSMOS_NETWORK = "./networks/gaiaiaiaiaiaia/" | ||
process.env.GAIA_VERSION = "1.2.3-asdf" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do they no longer follow this format? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Jordan preprocesses it on the setter. |
||
process.env.GAIA_VERSION = "1.2.3" | ||
process.env.VOYAGER_VERSION = "3.6.9" | ||
process.env.COSMOS_HOME = testRoot | ||
fs.ensureFileSync(testRoot + "genesis.json") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we change it to 8000 ?