File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 98
98
- name : Upload coverage report
99
99
uses : codecov/codecov-action@v1
100
100
101
+ test-arch :
102
+ name : Test on ${{ matrix.distro }} ${{ matrix.arch }}
103
+ runs-on : " ubuntu-latest"
104
+ needs : lint
105
+ strategy :
106
+ matrix :
107
+ distro : [ "ubuntu20.04" ]
108
+ arch : ["aarch64"]
109
+ steps :
110
+
111
+ with :
112
+ submodules : recursive
113
+
114
+ name : Build & run test
115
+ with :
116
+ arch : ${{ matrix.arch }}
117
+ distro : ${{ matrix.distro }}
118
+ install : |
119
+ apt-get update -q -y
120
+ apt-get install -q -y python3 python3-pip build-essential gcc binutils automake autoconf
121
+ run : |
122
+ python3 -m pip install -U setuptools pip wheel tox
123
+ tox -e py3
124
+
101
125
# Test if the python-isal conda package can be build. Which is linked
102
126
# dynamically to the conda isa-l package.
103
127
test-dynamic :
You can’t perform that action at this time.
0 commit comments