-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
30 lines (27 loc) · 820 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
26
27
28
29
30
kind: pipeline
name: build-and-test-amd64
platform:
os: linux
arch: arm64
steps:
- name: Build and run and push
image: ubuntu:18.04
environnement:
- PASSD:
from_secret: pass
- TEST0:
from_secret: test
commands:
- apt-get update -y
- export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true
- apt-get install -y tzdata
- apt-get install -y python3 python3-matplotlib python3-numpy python3-pandas python3-scipy python3-xlrd python3-tk python3-requests ghostscript imagemagick poppler-utils libnotify-bin time git
- chmod +x CI_mpl_agg.sh ;chmod +x run_all.sh; chmod +x merge.sh;
- ./CI_mpl_agg.sh
- ./run_all.sh; ls
- ./merge.sh ; ls
trigger:
event:
- push
- exclude: [ promote , gh-pages, github-pages]
- cron: [daily]