forked from Homebrew/homebrew-core
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (47 loc) · 1.61 KB
/
scheduled.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
name: Scheduled online check
on:
push:
paths:
- .github/workflows/scheduled.yml
schedule:
# Once every day at 1AM
- cron: "0 1 * * *"
concurrency:
group: scheduled
cancel-in-progress: true
jobs:
create_matrix:
if: startsWith( github.repository, 'Homebrew/' )
runs-on: ubuntu-22.04
outputs:
json: ${{ steps.matrix.outputs.json }}
env:
TEST_COUNT: 20
TAP: homebrew/core
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- id: matrix
run: |
formula=$(find $(brew --repo "${TAP}")/Formula | shuf -n "${TEST_COUNT}" | xargs -I{} basename {} .rb)
json=$(brew info --json=v2 $formula | jq --compact-output '[.formulae[] | select(.deprecated == false and .disabled == false) | .name]')
echo "json=${json}" >> $GITHUB_OUTPUT
audit_online:
if: startsWith( github.repository, 'Homebrew/' )
runs-on: ubuntu-22.04
needs: create_matrix
name: "Online check: ${{ matrix.formula }}"
env:
HOMEBREW_GITHUB_API_TOKEN: "${{ github.token }}"
strategy:
matrix:
formula: ${{ fromJson(needs.create_matrix.outputs.json) }}
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Check formula for missing upstreams etc.
run: brew audit --online --skip-style --only github_repository_archived,gitlab_repository_archived,homepage ${{ matrix.formula }}
- name: Check formula for missing sources.
run: brew fetch -s ${{ matrix.formula }}