Skip to content
Snippets Groups Projects
Unverified Commit 94233cf4 authored by Markus Reiter's avatar Markus Reiter Committed by GitHub
Browse files

Merge pull request #6384 from reitermarkus/docker

Try caching the Docker image.
parents 351315fb 85968040
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,9 @@ jobs:
if: matrix.os == 'macOS-latest'
- name: Build Docker image
run: docker-compose -f Dockerfile.yml build sut
run: |
docker pull linuxbrew/brew
docker-compose -f Dockerfile.yml build sut
if: matrix.os == 'ubuntu-latest'
- name: Run brew test-bot
......
......@@ -26,6 +26,7 @@ RUN localedef -i en_US -f UTF-8 en_US.UTF-8 \
&& useradd -m -s /bin/bash linuxbrew \
&& echo 'linuxbrew ALL=(ALL) NOPASSWD:ALL' >>/etc/sudoers
ADD . /home/linuxbrew/.linuxbrew/Homebrew
ARG FORCE_REBUILD
RUN cd /home/linuxbrew/.linuxbrew \
&& mkdir -p bin etc include lib opt sbin share var/homebrew/linked Cellar \
&& ln -s ../Homebrew/bin/brew /home/linuxbrew/.linuxbrew/bin/ \
......
sut:
build: .
command:
- sh
- -xc
- |
/home/linuxbrew/.linuxbrew/bin/brew test-bot
status=$$?
exit $$status
environment:
# GitHub Actions
- GITHUB_ACTIONS
- GITHUB_BASE_REF
- GITHUB_EVENT_NAME
- GITHUB_REF
- GITHUB_REPOSITORY
- GITHUB_SHA
- HEAD_GITHUB_REF
# Azure Pipelines
- BUILD_REASON
- BUILD_REPOSITORY_URI
- BUILD_SOURCEVERSION
- SYSTEM_PULLREQUEST_PULLREQUESTNUMBER
- SYSTEM_PULLREQUEST_TARGETBRANCH
- TF_BUILD
# GitHub API
- HOMEBREW_GITHUB_API_TOKEN
version: '3.7'
services:
sut:
build:
context: .
cache_from:
- linuxbrew/brew
args:
- FORCE_REBUILD=1
command:
- sh
- -xc
- |
/home/linuxbrew/.linuxbrew/bin/brew test-bot
status=$$?
exit $$status
environment:
# GitHub Actions
- GITHUB_ACTIONS
- GITHUB_BASE_REF
- GITHUB_EVENT_NAME
- GITHUB_REF
- GITHUB_REPOSITORY
- GITHUB_SHA
- HEAD_GITHUB_REF
# Azure Pipelines
- BUILD_REASON
- BUILD_REPOSITORY_URI
- BUILD_SOURCEVERSION
- SYSTEM_PULLREQUEST_PULLREQUESTNUMBER
- SYSTEM_PULLREQUEST_TARGETBRANCH
- TF_BUILD
# GitHub API
- HOMEBREW_GITHUB_API_TOKEN
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment