-
Notifications
You must be signed in to change notification settings - Fork 4
219 lines (217 loc) · 7.4 KB
/
expiredDomains.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
name: "Check Expired Domains From Filterlists"
on:
workflow_dispatch:
inputs:
number_of_KAD_jobs:
description: "Quantity of KAD jobs"
required: true
default: 20
number_of_KADh_jobs:
description: "Quantity of KADhosts jobs"
required: true
default: 2
schedule:
- cron: "55 23 * * 6"
env:
CI_TIME_LIMIT: "2 hours"
NUMBER_OF_KAD_JOBS: ${{ github.event.inputs.number_of_kad_jobs || 4 }}
NUMBER_OF_KADHOSTS_JOBS: ${{ github.event.inputs.number_of_KADh_jobs || 2 }}
jobs:
KAD_S:
runs-on: ubuntu-latest
container: ghcr.io/filtersheroes/expired_domains_image:latest
outputs:
KAD-strategy-matrix: ${{ steps.generate.outputs.KAD-strategy-matrix }}
KADh-strategy-matrix: ${{ steps.generate.outputs.KADh-strategy-matrix }}
steps:
- uses: actions/checkout@v4
- run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
echo "$NUMBER_OF_KAD_JOBS"
numberParts="$NUMBER_OF_KAD_JOBS" ./scripts/CI/CI_LETS_DO_THIS.py KAD
numberParts="$NUMBER_OF_KADHOSTS_JOBS" ./scripts/CI/CI_LETS_DO_THIS.py KADhosts
- uses: actions/upload-artifact@v4
with:
name: E_KAD_S
path: |
split/KAD_*
- uses: actions/upload-artifact@v4
with:
name: E_KADH_S
path: |
split/KADhosts_*
- id: generate
run: |
./scripts/CI/createMatrixStrategy.py
KAD:
needs: [KAD_S, PAF, SocialPASS, Cookies, KADhosts]
runs-on: ubuntu-latest
container: ghcr.io/filtersheroes/expired_domains_image:latest
strategy:
matrix:
KAD: ${{ fromJson(needs.KAD_S.outputs.KAD-strategy-matrix) }}
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: E_KAD_S
path: split
- run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
KADfile=KAD_"$(./scripts/CI/getFileNumber.sh ${{ matrix.KAD }} )"
./scripts/CI/CI_LETS_DO_THIS.py "$KADfile"
echo 'E_KADS<<EOF' >> $GITHUB_ENV
echo "$(./scripts/CI/getFileListForED.sh $KADfile)" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
echo "currentKADName=E_$KADfile" >> $GITHUB_ENV
- uses: actions/upload-artifact@v4
with:
name: ${{ env.currentKADName }}
path: |
${{ env.E_KADS }}
KADhosts:
needs: KAD_S
runs-on: ubuntu-latest
container: ghcr.io/filtersheroes/expired_domains_image:latest
strategy:
matrix:
KADH: ${{ fromJson(needs.KAD_S.outputs.KADh-strategy-matrix) }}
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: E_KADH_S
path: split
- run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
KADHfile=KADhosts_"$(./scripts/CI/getFileNumber.sh ${{ matrix.KADH }} )"
./scripts/CI/CI_LETS_DO_THIS.py "$KADHfile"
echo 'E_KADHS<<EOF' >> $GITHUB_ENV
echo "$(./scripts/CI/getFileListForED.sh $KADHfile)" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
echo "currentKADHName=E_$KADHfile" >> $GITHUB_ENV
- uses: actions/upload-artifact@v4
with:
name: ${{ env.currentKADHName }}
path: |
${{ env.E_KADHS }}
PAF:
runs-on: ubuntu-latest
container: ghcr.io/filtersheroes/expired_domains_image:latest
steps:
- uses: actions/checkout@v4
- run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
./scripts/CI/CI_LETS_DO_THIS.py PAF_C
echo 'E_PAF<<EOF' >> $GITHUB_ENV
echo "$(./scripts/CI/getFileListForED.sh \
PAF_arrows \
PAF_backgrounds_self-advertising \
PAF_contact_feedback_widgets \
PAF_e_newspaper \
PAF_newsletters \
PAF_other_widgets \
PAF_pop-ups \
PAF_push \
PAF_scrolling_videos \
PAF_backgrounds_self-adv_supp \
PAF_comeback_titles \
PAF_contact_feedback_widgets_supp \
PAF_newsletters_supp \
PAF_other_elements_supp \
PAF_pop-ups_supp \
PAF_push_supp \
PAF_scrolling_videos_supp \
PAF_tagged_internal_links)" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- uses: actions/upload-artifact@v4
with:
name: E_PAF
path: |
${{ env.E_PAF }}
SocialPASS:
runs-on: ubuntu-latest
container: ghcr.io/filtersheroes/expired_domains_image:latest
steps:
- uses: actions/checkout@v4
- run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
./scripts/CI/CI_LETS_DO_THIS.py Social_C
./scripts/CI/CI_LETS_DO_THIS.py PASS
echo 'E_SOCIAL<<EOF' >> $GITHUB_ENV
echo "$(./scripts/CI/getFileListForED.sh polish_rss_filters polish_rss_filters_supp adblock_social_list social_filters_uB_AG)" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- uses: actions/upload-artifact@v4
with:
name: E_SOCIAL
path: |
${{ env.E_SOCIAL }}
Cookies:
runs-on: ubuntu-latest
container: ghcr.io/filtersheroes/expired_domains_image:latest
steps:
- uses: actions/checkout@v4
- run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
./scripts/CI/CI_LETS_DO_THIS.py Cookies_C
echo 'E_COOKIES<<EOF' >> $GITHUB_ENV
echo "$(./scripts/CI/getFileListForED.sh adblock_cookies cookies_uB_AG)" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- uses: actions/upload-artifact@v4
with:
name: E_COOKIES
path: |
${{ env.E_COOKIES }}
KAD_limit:
needs: [KAD]
runs-on: ubuntu-latest
container: ghcr.io/filtersheroes/expired_domains_image:latest
steps:
- uses: actions/checkout@v4
- continue-on-error: true
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
./scripts/CI/getArtifactNamesForED.py KAD
- uses: hawkeye116477/download-multiple-artifacts-action@v2
with:
names: |
${{ env.E_KAD_NAMES }}
path: expired-domains
- run: |
./scripts/CI/CI_LETS_DO_THIS_KAD_limit.py
echo 'E_KAD<<EOF' >> $GITHUB_ENV
echo "$(./scripts/CI/getFileListForED.sh KAD)" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- uses: actions/upload-artifact@v4
with:
name: E_KAD
path: |
${{ env.E_KAD }}
deploy:
needs: [KAD_limit, KADhosts, PAF, SocialPASS, Cookies]
runs-on: ubuntu-latest
container: ghcr.io/filtersheroes/expired_domains_image:latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- continue-on-error: true
run: ./scripts/CI/getArtifactNamesForED.py KADhosts
- continue-on-error: true
uses: hawkeye116477/download-multiple-artifacts-action@v2
with:
names: |
${{ env.E_KADhosts_NAMES }}
E_KAD
E_PAF
E_SOCIAL
E_COOKIES
path: expired-domains
- name: "Final deploy"
env:
GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
./scripts/CI/deploy.py