-
Notifications
You must be signed in to change notification settings - Fork 65
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 #6 from dapplion/aura-posdao
Add AuRa POSDAO
- Loading branch information
Showing
2 changed files
with
425 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Test image | ||
on: | ||
push: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: docker build --tag ethereum-genesis-generator . | ||
- name: Test AuRa POSDAO CLI args | ||
run: docker run --rm --entrypoint="sh" ethereum-genesis-generator -c "python3 /apps/el-gen/genesis_aura_posdao.py --miningAddresses 0xb0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0 0xb1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1" | ||
- name: Test AuRa POSDAO config file | ||
run: | | ||
cat >$PWD/config.yml <<EOL | ||
miningAddresses: | ||
- "0xb0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0" | ||
- "0xb1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1b1" | ||
EOL | ||
docker run --rm --entrypoint="sh" --volume=$PWD/config.yml:/config.yml ethereum-genesis-generator -c "python3 /apps/el-gen/genesis_aura_posdao.py /config.yml" |
Oops, something went wrong.