-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.drone.yml
51 lines (45 loc) · 1.05 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
pipeline:
test-moeserifu-release:
image: gcc:5
commands:
- make
- make clean
when:
event: [pull_request, push]
branch: master
test-moeserifu-debug:
image: gcc:5
commands:
- make debug
- make clean
when:
event: [pull_request, push]
branch: master
test-plugins-release:
image: gcc:5
commands:
- make plugins
- make clean-plugins
when:
event: [pull_request, push]
branch: master
test-plugins-debug:
image: gcc:5
commands:
- make debug plugins
- make clean
when:
event: [pull_request, push]
branch: master
run-python-tests:
image: python:3.8
environment:
TEST: "1"
commands:
- cd python
- curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
- $HOME/.poetry/bin/poetry install -E feed_plugin -E notifications_plugin
- $HOME/.poetry/bin/poetry run ./test_and_coverage.sh
when:
event: [pull_request, push]
branch: master