Skip to content
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

.github/workflows/plebnet-playground.yml: simplify #108

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 11 additions & 25 deletions .github/workflows/plebnet-playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,45 +57,31 @@ jobs:
- run: pip install -r requirements.txt
if: steps.cache-virtualenv.outputs.cache-hit != 'true'

- name: make venv && install.sh make help report
- name: make initialize init venv build install.sh help report
run: |
make init initialize
make initialize init
make venv && . .venv/bin/activate
make build para=true
./install.sh
make help report
./uninstall.sh
- name: make initialize, venv, init, build, install
run: |
make install-cluster
make build nocache=true
make build para=true
make install-cluster
make install verbose=true
# blocknotify | jq . & exit
- name: play
run: |
play
play info
play ids
- name: bitcoind-commands
- name: play-bitcoin
run: |
play bitcoin config
play bitcoin "bitcoin-cli"
play-bitcoin config
play bitcoin
play bitcoin top
play bitcoin netinfo 5
play bitcoin gettxoutsetinfo
play bitcoin getmininginfo
play bitcoin 'bitcoin-cli getblockhash 1000'
- name: lnd-commands
play-bitcoin "bitcoin-cli"
- name: play-lnd
run: |
# play defaults to the lnd container
play lnd config
play lnd "lncli"
play-lnd config
play lnd
play lnd top
play lnd lncli
play lncli
play lncli --version
play lnd 'lncli --version'
play-lnd "lncli"

- name: uninstall
run: |
Expand Down