-
Notifications
You must be signed in to change notification settings - Fork 4
105 lines (83 loc) · 3.56 KB
/
Copy pathci.yml
File metadata and controls
105 lines (83 loc) · 3.56 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
# 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: Python application
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_macos:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f src/requirements.txt ]; then pip install -r src/requirements.txt; fi
python setup.py install
brew install nlohmann-json
# install android ndk
brew install android-ndk
# make a symbolic link to libclang to overcome SIP issue
ln -s /Library/Developer/CommandLineTools/usr/lib/libclang.dylib /usr/local/lib
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run unit tests
run: |
pytest ./src/test/
- name: Run examples tests for all languages
run: bazel test //... --macos_minimum_os=11.6.1 --test_output=all
working-directory: examples/primitives/
- name: Run hello_user tests for all languages
run: bazel test //... --macos_minimum_os=11.6.1 --test_output=all
working-directory: examples/tutorials/hello_user/
- name: Run array tests for all languages
run: bazel test //... --macos_minimum_os=11.6.1 --test_output=all
working-directory: examples/tutorials/array/
build_ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Set up swift 5.4
uses: swift-actions/setup-swift@v1.15.0
with:
swift-version: "5.4.0"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f src/requirements.txt ]; then pip install -r src/requirements.txt; fi
sudo apt-get update && sudo apt-get install -y libclang-12-dev nlohmann-json3-dev
python setup.py install
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run unit tests
run: |
pytest ./src/test/
- name: Run examples tests for all languages
run: bazel test //... --test_output=all
working-directory: examples/primitives/
- name: Run hello_user tests for all languages
run: bazel test //... --test_output=all
working-directory: examples/tutorials/hello_user/
- name: Run array tests for all languages
run: bazel test //... --test_output=all
working-directory: examples/tutorials/array/