|
| 1 | +name: Supernova |
| 2 | +on: |
| 3 | + push: |
| 4 | + branches: |
| 5 | + - ci/supernova |
| 6 | + schedule: |
| 7 | + - cron: '0 2 * * *' # run at 2 AM UTC |
| 8 | + |
| 9 | +jobs: |
| 10 | + supernova: |
| 11 | + runs-on: ubuntu-latest |
| 12 | + |
| 13 | + permissions: |
| 14 | + contents: write |
| 15 | + |
| 16 | + services: |
| 17 | + gnoland: |
| 18 | + image: ghcr.io/gnolang/gno:latest |
| 19 | + # keep the container running |
| 20 | + options: --workdir /opt/gno/src/gno.land -it --entrypoint "bash" |
| 21 | + ports: |
| 22 | + - 26657:26657 |
| 23 | + - 36657:36657 |
| 24 | + |
| 25 | + steps: |
| 26 | + - uses: actions/checkout@v3 |
| 27 | + |
| 28 | + - name: setup and start gnoland chain |
| 29 | + run: | |
| 30 | + docker exec ${{ job.services.gnoland.id }} gnoland -skip-start=true |
| 31 | + docker exec ${{ job.services.gnoland.id }} sed -i 's#laddr =.*:26657.*#laddr = "tcp://0.0.0.0:26657"#g' testdir/config/config.toml |
| 32 | + docker exec -dit ${{ job.services.gnoland.id }} gnoland |
| 33 | +
|
| 34 | + - name: install some softwares |
| 35 | + run: | |
| 36 | + sudo apt-get update -y && sudo apt-get install -y wget curl unzip sudo |
| 37 | +
|
| 38 | + - name: download supernova |
| 39 | + run: | |
| 40 | + export SUPERNOVA_VERSION=1.0.0 |
| 41 | + wget -c https://github.com/gnolang/supernova/releases/download/v${SUPERNOVA_VERSION}/supernova_${SUPERNOVA_VERSION}_linux_amd64.tar.gz -O - | tar -xz -C /usr/local/bin/ |
| 42 | + # install supernova scripts |
| 43 | + wget -O /tmp/main.zip https://github.com/gnolang/supernova/archive/refs/heads/main.zip |
| 44 | + unzip -d /tmp/ /tmp/main.zip |
| 45 | + cp -r /tmp/supernova-main/scripts . |
| 46 | +
|
| 47 | + - name: run supernova |
| 48 | + run: | |
| 49 | + curl -v http://localhost:26657/status |
| 50 | + supernova -sub-accounts 5 -transactions 100 -url http://localhost:26657 -mnemonic "source bonus chronic canvas draft south burst lottery vacant surface solve popular case indicate oppose farm nothing bullet exhibit title speed wink action roast" -output result.json |
| 51 | +
|
| 52 | + - name: archive supernova result |
| 53 | + uses: actions/upload-artifact@v3 |
| 54 | + with: |
| 55 | + name: supernova-result.json |
| 56 | + path: result.json |
| 57 | + |
| 58 | + - name: Send report to slack \#gno-core-tech |
| 59 | + run: | |
| 60 | + DATA=$(cat result.json | jq -r ) |
| 61 | + PAYLOAD="{\"payload\": '$DATA'}" |
| 62 | + curl -X POST -H 'Content-type: application/json' --data "$PAYLOAD" $SLACK_WEBHOOK_URL |
| 63 | + env: |
| 64 | + SLACK_WEBHOOK_URL: ${{ secrets.CI_REPORT_SLACK_WEBHOOK }} |
| 65 | + |
| 66 | + - name: move result.json in reports/ |
| 67 | + run: | |
| 68 | + mkdir -p reports/supernova |
| 69 | + mv result.json reports/supernova/$(date +"%Y-%m-%d")_report.json |
| 70 | +
|
| 71 | + - uses: stefanzweifel/git-auto-commit-action@v4 |
| 72 | + with: |
| 73 | + push_options: '--force' |
| 74 | + commit_message: add daily report |
0 commit comments