mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

This will improve the output and ease of parsing while allowing code to be removed from brew-test-bot which relates only to a single repo (this one).
18 lines
281 B
YAML
18 lines
281 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
sut:
|
|
build:
|
|
context: .
|
|
cache_from:
|
|
- homebrew/brew
|
|
args:
|
|
- FORCE_REBUILD=1
|
|
command:
|
|
- sh
|
|
- -xc
|
|
- |
|
|
/home/linuxbrew/.linuxbrew/bin/brew test-bot
|
|
status=$$?
|
|
exit $$status
|