-
-
Notifications
You must be signed in to change notification settings - Fork 1
80 lines (57 loc) · 2.57 KB
/
epicmorg.base.images.testrail.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
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
name: EpicMorg EcoSystem Testrail Images
on:
# push:
# branches:
# - 'master'
schedule:
- cron: '4 4 * * 1,3,5'
jobs:
build-testrail-images:
name: Build EpicMorg Testrail Images
runs-on: ubuntu-22.04
# needs: build-php-images
steps:
- uses: actions/checkout@v3
- name: Log into registry
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Test Make
run: make
- name: "Build and Deploy Cassandra 3.11 Image:"
run: cd linux/ecosystem/cassandra/3.11 && pwd && make build && make deploy
##################################################################################
build-testrail-702-images:
name: Build EpicMorg Testrail 7.0.2.1016 Images
runs-on: ubuntu-22.04
# needs: build-php-images
steps:
- uses: actions/checkout@v3
- name: Log into registry
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Test Make
run: make
- name: "Build and Deploy Testrail 7.0.2.1016 Image:"
run: cd linux/ecosystem/testrail/7.0.2.1016/main && pwd && make build && make deploy
- name: "Build and Deploy Testrail 7.0.2.1016 + AD Image:"
run: cd linux/ecosystem/testrail/7.0.2.1016/ad && pwd && make build && make deploy
- name: "Build and Deploy Testrail 7.0.2.1016 + LDAP Image:"
run: cd linux/ecosystem/testrail/7.0.2.1016/ldap && pwd && make build && make deploy
##################################################################################
build-testrail-741-images:
name: Build EpicMorg Testrail 7.4.1.8092 Images
runs-on: ubuntu-22.04
# needs: build-php-images
steps:
- uses: actions/checkout@v3
- name: Log into registry
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Test Make
run: make
- name: "Build and Deploy Testrail 7.4.1.8092 Image:"
run: cd linux/ecosystem/testrail/7.4.1.8092/main && pwd && make build && make deploy
- name: "Build and Deploy Testrail 7.4.1.8092 + AD Image:"
run: cd linux/ecosystem/testrail/7.4.1.8092/ad && pwd && make build && make deploy
- name: "Build and Deploy Testrail 7.4.1.8092 + LDAP Image:"
run: cd linux/ecosystem/testrail/7.4.1.8092/ldap && pwd && make build && make deploy
##################################################################################
- name: Cleanup
run: make docker-clean