-
Notifications
You must be signed in to change notification settings - Fork 10
46 lines (41 loc) · 1.35 KB
/
system_check_profits.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Check key balances on sepolia-testnet to determine profits
#
name: '[system] Check profits'
run-name: Check sepolia-testnet profits
on:
schedule:
- cron: '*/60 * * * *'
workflow_dispatch:
jobs:
run-check:
runs-on: [self-hosted, Linux, X64, ten-test-gh-runner-02]
steps:
- name: 'Check out ten-test'
uses: actions/checkout@v3
with:
path: ./ten-test
- name: 'Check out go-ten code'
uses: actions/checkout@v3
with:
repository: ten-protocol/go-ten
path: ./go-ten
ref: 'releases/v0.28'
- name: 'Build required artifacts for running tests'
run: |
cd ${{ github.workspace }}/ten-test
./get_artifacts.sh
ls -l ${{ github.workspace }}/ten-test/artifacts
- name: 'Run funds check'
run: |
cd ${{ github.workspace }}/ten-test/admin
/usr/local/bin/pysys.py run -m ten.sepolia check_profits
- name: 'Upload performance output'
uses: actions/upload-artifact@v4
if: always()
with:
name: profits-artifact
path: |
${{ github.workspace }}/ten-test/admin/check_profits/Output/linux/profits.pdf
${{ github.workspace }}/ten-test/admin/check_profits/Output/linux/profits.log
if-no-files-found: ignore
retention-days: 1