-
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 12 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,21 +101,21 @@ 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. | ||
Unzip the app version for your OS: | ||
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. unzip? untar? unpack? also should we include the command?
|
||
|
||
```bash | ||
open builds/Cosmos-{platform}-x64/Cosmos.app | ||
``` | ||
- Linux: `builds/Voyager/Cosmos_Voyager-v0.9.4-Linux.tar.gz` | ||
- MacOS: `builds/Voyager/Cosmos_Voyager-v0.9.4-macOS.tar.gz` | ||
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. but i'm pretty sure this is a 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. sorry my mistake |
||
- Windows: `builds/Voyager/Cosmos_Voyager-v0.9.4-Windows.tar.gz` | ||
|
||
To test if your build worked run: | ||
|
||
```bash | ||
$ yarn test:exe {path to the build executable} | ||
$ yarn test:exe {path to the unpacked executable} | ||
``` | ||
|
||
To make an official release, follow the instructions in `docs/release.md`. | ||
|
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 ?