forked from bashtage/randomgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
25 lines (22 loc) · 778 Bytes
/
.drone.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
---
kind: pipeline
type: docker
name: test-on-arm64
platform:
os: linux
arch: arm64
steps:
- name: test
image: ubuntu:focal
commands:
- uname -a
- ln -s /usr/bin/gpgv /usr/bin/gnupg2
# - apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 871920D1991BC93C
- apt-get update
- export DEBIAN_FRONTEND=noninteractive
- apt-get install libatlas-base-dev build-essential cython3 python3-numpy python3 python3-dev python3-pip libxml2-dev libxslt-dev python3-lxml git -y
- gcc tools/long_double_sizes.c -o long_double_sizes && ./long_double_sizes
- python3 -m pip install -r requirements.txt --upgrade
- python3 -m pip install -r requirements-dev.txt
- python3 -m pip install -e . --no-build-isolation
- pytest -r a randomgen