Skip to content

Commit 062ac85

Browse files
committed
Add test for aarch64
1 parent 5512947 commit 062ac85

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,30 @@ jobs:
9898
- name: Upload coverage report
9999
uses: codecov/codecov-action@v1
100100

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+
- uses: actions/[email protected]
111+
with:
112+
submodules: recursive
113+
- uses: uraimo/[email protected]
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+
101125
# Test if the python-isal conda package can be build. Which is linked
102126
# dynamically to the conda isa-l package.
103127
test-dynamic:

0 commit comments

Comments
 (0)