Scheduled online check #371
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
container: | |
image: ghcr.io/homebrew/ubuntu22.04:master | |
outputs: | |
json: ${{ steps.matrix.outputs.json }} | |
env: | |
TEST_COUNT: 50 | |
TAP: homebrew/core | |
steps: | |
- name: Set up Homebrew | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
with: | |
core: true | |
cask: false | |
test-bot: false | |
- id: matrix | |
run: | | |
formula="$(find "$(brew --repo "${TAP}")/Formula" | shuf -n "${TEST_COUNT}" | xargs -I{} basename {} .rb)" | |
# shellcheck disable=SC2086 | |
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 | |
container: | |
image: ghcr.io/homebrew/ubuntu22.04:master | |
needs: create_matrix | |
name: "Online check: ${{ matrix.formula }}" | |
env: | |
HOMEBREW_GITHUB_API_TOKEN: "${{ github.token }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
formula: ${{ fromJson(needs.create_matrix.outputs.json) }} | |
steps: | |
- name: Set up Homebrew | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
with: | |
core: true | |
cask: false | |
test-bot: false | |
- 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 }} |