-
Notifications
You must be signed in to change notification settings - Fork 12
134 lines (115 loc) · 5.93 KB
/
ci.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
# eslint-disable yml/no-empty-mapping-value
name: "`⚡︎ CRON ⚡︎`"
on:
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: Enable debugging
required: false
default: false
push:
branches:
- "*"
# - main
# - 'feature/**'
pull_request:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
# Note: Since the repository only acts as an entrypoint + uses bkt cache - we can now pull sources much more frequent than previously 5 hours (5x5 > 24)
# This should ensure that we don't hammer AbuseIPDB's api to get a 429 (too many requests)
schedule:
- cron: '15,30,45 * * * *'
jobs:
# Job ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
build:
name: job ❯ build & run
runs-on: ubuntu-24.04
concurrency:
group: ${{ github.workflow }}
timeout-minutes: 3
steps:
# ─────────────────────────────────────────────────────
- name: Bootstrap ❯❯ actions/checkout@v4
uses: actions/checkout@v4
with:
fetch-depth: 1
# ─────────────────────────────────────────────────────
- name: Bootstrap ❯❯ denoland/setup-deno@v2
id: deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
# ─────────────────────────────────────────────────────
- name: Bootstrap ❯❯ Set env variables
run: |
.cron/scripts/ciutil set-env-variables
# Secrets
echo ABUSEIPDB_TOKEN="${{ secrets.ABUSEIPDB_TOKEN }}" >> $GITHUB_ENV
echo CRONSRC="${{ secrets.CRONSRC }}" >> $GITHUB_ENV
echo CRONSRC_URL="${{ secrets.CRONSRC_URL }}" >> $GITHUB_ENV
echo CRONSRC_HEADER="${{ secrets.CRONSRC_HEADER }}" >> $GITHUB_ENV
echo MMDB_URL="${{ secrets.MMDB_URL }}" >> $GITHUB_ENV
# ─────────────────────────────────────────────────────
- uses: actions/cache@v4
name: Bootstrap ❯❯ Restore Cache
with:
path: ${{ env.ACTIONS_CACHE_DIR }}
key: ${{ runner.os }}-v1-store-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/deno.lock') }}
restore-keys: |
${{ runner.os }}-v1-store-${{ env.CACHE_PREFIX }}-
${{ runner.os }}-v1-store-
- uses: actions/cache@v4
name: Bootstrap ❯❯ Restore TTL Cache
if: always()
with:
path: ${{ env.TTL_CACHE_DIR }}
key: ${{ runner.os }}-ttl-cache-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}
restore-keys: |
${{ runner.os }}-ttl-cache-
${{ runner.os }}-
# ─────────────────────────────────────────────────────
- name: Bootstrap ❯❯ Preinstall & Prepare Environment
run: |
. .cron/scripts/ciutil
✨ "Setup: Preinstall binaries" && preinstall-binaries
✨ "Debug: System information" && system-info
✨ "Debug: Env variables" && ga-dump-env
✨ "Debug: cache ($ACTIONS_CACHE_DIR)" && show-cache-structure-default
✨ "Debug: cache ($TTL_CACHE_DIR)" && show-cache-structure-ttl
✨ "Housekeeping:" && cron-housekeeping
✨ "Download mmdb database:" && \
( mkdir -p ~/.local/share/ipinfo && cd $_ && \
curl -sSL $MMDB_URL | unzstd - -o country_asn.mmdb || true )
✨ "Make local script available globally" && \
deno install -A -f -g --root ~/.local/ .cron/scripts/ip2ipinfo.ts || true
# ─────────────────────────────────────────────────────
- name: Cron ❯❯ Job1
run: |
cd .cron && just
# ─────────────────────────────────────────────────────
- name: Post hooks ❯❯ Commit to repository
if: github.ref == 'refs/heads/main'
run: |
.cron/scripts/ciutil git-squash-to-repository
# ─────────────────────────────────────────────────────
- name: "Debug ❯❯ Context Information"
id: github_context_step
env:
JSON_GITHUB: ${{ toJSON(github) }}
JSON_JOB: ${{ toJSON(job) }}
JSON_STEPS: ${{ toJSON(steps) }}
JSON_RUNNER: ${{ toJSON(runner) }}
JSON_STRATEGY: ${{ toJSON(strategy) }}
JSON_MATRIX: ${{ toJSON(MATRIX) }}
run: |
ip-public
.cron/scripts/ciutil show-cache-structure-default
.cron/scripts/ciutil show-cache-structure-ttl
.cron/scripts/ciutil ___
printf "$JSON_GITHUB" >> $DEBUG_DIR/github.json
printf "$JSON_JOB" >> $DEBUG_DIR/job.json
printf "$JSON_STEPS" >> $DEBUG_DIR/steps.json
printf "$JSON_RUNNER" >> $DEBUG_DIR/runner.json
printf "$JSON_STRATEGY" >> $DEBUG_DIR/strategy.json
printf $JSON_MATRIX >> $DEBUG_DIR/matrix.json
ga-dump-context | tee /tmp/ga-dump-context.txt &> /dev/null && cat /tmp/ga-dump-context.txt