File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change 34
34
tox_env :
35
35
- docs
36
36
- twine_check
37
- - asan
38
37
runs-on : ubuntu-latest
39
38
steps :
40
39
45
44
with :
46
45
python-version : 3.8
47
46
- name : Install isal
48
- run : sudo apt-get install libisal-dev libasan8
47
+ run : sudo apt-get install libisal-dev
49
48
- name : Install tox and upgrade setuptools and pip
50
49
run : pip install --upgrade tox setuptools pip
51
50
- name : Run tox -e ${{ matrix.tox_env }}
@@ -100,6 +99,23 @@ jobs:
100
99
- name : Upload coverage report
101
100
uses : codecov/codecov-action@v1
102
101
102
+ test-asan :
103
+ runs-on : " ubuntu-latest"
104
+ steps :
105
+
106
+ with :
107
+ submodules : recursive
108
+ - name : Set up Python 3.8
109
+
110
+ with :
111
+ python-version : " 3.8"
112
+ - name : Install tox and upgrade setuptools
113
+ run : pip install --upgrade tox setuptools
114
+ - name : Install build dependencies (Linux) # Yasm in pypa/manylinux images.
115
+ run : sudo apt install nasm
116
+ - name : Run asan tests
117
+ run : tox -e asan
118
+
103
119
test-arch :
104
120
if : startsWith(github.ref, 'refs/tags') || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main'
105
121
runs-on : " ubuntu-latest"
You can’t perform that action at this time.
0 commit comments