forked from hummingbot/hummingbot
-
Notifications
You must be signed in to change notification settings - Fork 1
139 lines (125 loc) · 5.44 KB
/
Copy pathworkflow.yml
File metadata and controls
139 lines (125 loc) · 5.44 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
name: ci
on:
push:
branches: [master, development, 'refactor/unit_tests**', 'epic/**']
pull_request:
branches: [master, development, 'refactor/unit_tests**', 'epic/**']
types: [ready_for_review, opened, synchronize, reopened]
jobs:
run_client:
name: Check if client files changed
outputs:
is_set: ${{ steps.check_files.outputs.is_set }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
# get-diff-action diffs against a pull/<n>/merge ref that only exists for pull_request
# events; on a push (e.g. post-merge to master/development) that ref is absent and the
# action exits 128, failing this gate and skipping the build. Only run the file-change
# filter for PRs; on push always build, since post-merge runs should exercise the suite.
- uses: technote-space/get-diff-action@v6
if: github.event_name == 'pull_request'
with:
PATTERNS: |
**/*.+(py|pyx|pyd|yml)
- name: Check if client files are modified
id: check_files
if: github.event_name == 'push' || env.GIT_DIFF
run: |
echo "is_set=true" >> $GITHUB_OUTPUT
build_hummingbot:
name: Hummingbot build + stable tests
needs: run_client
if: github.event.pull_request.draft == false && needs.run_client.outputs.is_set == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
# Use cache's hashFiles function to check for changes in core code
- name: Check for code changes
id: program-changes
uses: actions/cache@v5
env:
# Increase this value to manually reset cache if program files have not changed
CACHE_NUMBER: 0
with:
path: README.md # placeholder file
key: ${{ runner.os }}-build-${{ env.CACHE_NUMBER }}-${{ hashFiles('hummingbot/*', '**/*.py', '**/*.py*', '**/*.pxd', 'test/*') }}
# Check for setup/environment.yml changes
- name: Cache conda dependencies
id: conda-dependencies
uses: actions/cache@v5
env:
# Increase this value to manually reset cache if setup/environment.yml has not changed
CONDA_CACHE_NUMBER: 0
with:
path: |
/home/runner/conda_pkgs_dir/
/usr/share/miniconda/envs
key: ${{ runner.os }}-conda-${{ env.CONDA_CACHE_NUMBER }}-${{ hashFiles('setup/environment.yml') }}
# Install environment and Hummingbot
- name: Install environment and Hummingbot
uses: ./.github/actions/install_env_and_hb
with:
program-cache-hit: ${{steps.program-changes.outputs.cache-hit}}
dependencies-cache-hit: ${{steps.conda-dependencies.outputs.cache-hit}}
# Compile and run tests if code has changed
- name: Run pre-commit hooks on diff
shell: bash
if: steps.program-changes.outputs.cache-hit != 'true' || steps.conda-dependencies.outputs.cache-hit != 'true'
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate hummingbot
if [ "${{ github.event_name }}" == "pull_request" ]; then
pre-commit run --files $(git diff --name-only origin/${{ github.base_ref }})
else
pre-commit run --files $(git diff --name-only HEAD~1)
fi
- name: Run stable tests and calculate coverage
if: steps.program-changes.outputs.cache-hit != 'true' || steps.conda-dependencies.outputs.cache-hit != 'true'
shell: bash
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate hummingbot
make test
- name: Check and report global coverage
if: steps.program-changes.outputs.cache-hit != 'true' || steps.conda-dependencies.outputs.cache-hit != 'true'
shell: bash
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate hummingbot
make report_coverage
- name: Validate coverage for the changes
if: github.event_name == 'pull_request' && (steps.program-changes.outputs.cache-hit != 'true' || steps.conda-dependencies.outputs.cache-hit != 'true')
shell: bash
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate hummingbot
git fetch --all -q
git checkout -b $GITHUB_SHA
coverage xml
diff-cover --compare-branch=origin/$GITHUB_BASE_REF --fail-under=80 coverage.xml
# Notify results to discord
- name: Discord Webhook Action
id: discord-direct-webhook
if: always() && github.event_name == 'pull_request'
continue-on-error: true
uses: tsickert/discord-webhook@v7.0.0
with:
webhook-url: ${{ secrets.WEBHOOK_URL }}
raw-data: ${{ matrix.target }}-build_report.json
# Notify results to discord
- uses: ruby/setup-ruby@v1
if: github.event_name != 'pull_request' && steps.discord-direct-webhook.outcome == 'failure'
- name: Send Webhook Notification
if: github.event_name != 'pull_request' && steps.discord-direct-webhook.outcome == 'failure'
env:
JOB_STATUS: ${{ job.status }}
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
HOOK_OS_NAME: ${{ runner.os }}
WORKFLOW_NAME: ${{ github.workflow }}
run: |
git clone --depth 1 https://github.com/DiscordHooks/github-actions-discord-webhook.git webhook
bash webhook/send.sh $JOB_STATUS $WEBHOOK_URL
shell: bash