forked from caronc/apprise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
99 lines (90 loc) · 1.96 KB
/
docker-compose.yml
File metadata and controls
99 lines (90 loc) · 1.96 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
services:
test.py39:
build:
context: .
dockerfile: tests/docker/Dockerfile.py39
volumes:
- ./:/apprise
working_dir: /apprise
user: "1000:1000"
test.py310:
build:
context: .
dockerfile: tests/docker/Dockerfile.py310
volumes:
- ./:/apprise
working_dir: /apprise
user: "1000:1000"
test.py311:
build:
context: .
dockerfile: tests/docker/Dockerfile.py311
volumes:
- ./:/apprise
working_dir: /apprise
user: "1000:1000"
test.py312:
build:
context: .
dockerfile: tests/docker/Dockerfile.py312
volumes:
- ./:/apprise
working_dir: /apprise
user: "1000:1000"
rpmbuild.el9:
build:
context: .
dockerfile: tests/docker/Dockerfile.el9
volumes:
- ./:/apprise
working_dir: /apprise
user: "1000:1000"
rpmbuild.el10:
build:
context: .
dockerfile: tests/docker/Dockerfile.el10
volumes:
- ./:/apprise
working_dir: /apprise
user: "1000:1000"
rpmbuild.f42:
build:
context: .
dockerfile: tests/docker/Dockerfile.f42
volumes:
- ./:/apprise
working_dir: /apprise
user: "1000:1000"
rpmbuild.rawhide:
build:
context: .
dockerfile: tests/docker/Dockerfile.rawhide
volumes:
- ./:/apprise
working_dir: /apprise
user: "1000:1000"
#
# Every Day testing
#
# Sample testing:
# -> docker-compose run --rm test.py312 bash
# bin/apprise -
# tox -e checkdone
#
# Run a set of tests for just a certain section
# docker-compose run --rm test.py312 tox -e qa -- -k fcm
#
# Or just run all the tests in python 3.12
# docker-compose run --rm test.py312 tox -e qa
#
# Want to run the whole test suite:
#
#
# RPM Building
#
# el9
# - docker-compose run --rm rpmbuild.el9 /apprise/bin/build-rpm.sh
# el10
# - docker-compose run --rm rpmbuild.el10 /apprise/bin/build-rpm.sh
# f42 (Fedora)
# - docker-compose run --rm rpmbuild.f42 /apprise/bin/build-rpm.sh