-
Notifications
You must be signed in to change notification settings - Fork 4
164 lines (146 loc) · 4.54 KB
/
pull-request.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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: pull request
on:
pull_request:
branches: [ "master" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
python-app:
if: '! github.event.pull_request.draft'
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src/rpcclient
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [ 3.9, "3.10", 3.11, 3.12, 3.13 ]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Lint with flake8
run: |
python -m pip install flake8
flake8 . --max-complexity=14 --max-line-length=127 --statistics
- name: Verify sorted imports
run: |
python -m pip install isort
isort . -m HANGING_INDENT -l 120 --check-only
- name: Build
run: |
python3 -m pip install mypy-protobuf protobuf grpcio-tools
make -C ../protos/ python_protos
python -m pip install build
python3 -m build
- name: Install
run: |
python3 -m pip install .
- name: Run help
run: |
python3 -m rpcclient --help
build-linux-server:
if: '! github.event.pull_request.draft'
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./src/rpcserver
strategy:
matrix:
include:
- os: ubuntu-latest
arch: aarch64
- os: ubuntu-latest
arch: i686
- os: ubuntu-latest
arch: x86_64
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Run clang-format style.
run: |
if clang-format -n ../protos/*.proto *.h *.c | grep -q " code should be clang-formatted" ; then
echo "Code is not formatted correctly. Please run clang-format on these files."
exit 1
fi
- name: Test make
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler libprotobuf-dev libprotoc-dev protobuf-c-compiler
make -C ../protos/ c_protos
mkdir build
cd build
cmake .. -DTARGET=LINUX
make
pytest:
if: '! github.event.pull_request.draft'
needs: [python-app, build-linux-server]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: .
strategy:
matrix:
include:
- os: macos-latest
arch: arm64
python-version: "3.9"
- os: macos-latest
arch: arm64
python-version: "3.10"
- os: macos-latest
arch: arm64
python-version: "3.11"
- os: macos-latest
arch: arm64
python-version: "3.12"
- os: macos-latest
arch: x86_64
python-version: "3.9"
- os: macos-latest
arch: x86_64
python-version: "3.10"
- os: macos-latest
arch: x86_64
python-version: "3.11"
- os: macos-latest
arch: x86_64
python-version: "3.12"
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run server
working-directory: ./src/rpcserver
run: |
brew install protobuf protobuf-c
make -C ../protos/ c_protos
mkdir build
cd build
cmake .. -DTARGET=OSX
make
sudo nohup ./rpcserver_macosx &
- name: Install python package + pytest
working-directory: ./src/rpcclient
run: |
python3 -m pip install mypy-protobuf protobuf grpcio-tools
make -C ../protos/ python_protos
python -m pip install --upgrade pip
python -m pip install -U pytest
python -m pip install -U .
- name: pytest
working-directory: ./src/rpcclient
run: |
python -m pytest --ci --local-machine