Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
94233cf4
Unverified
Commit
94233cf4
authored
5 years ago
by
Markus Reiter
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #6384 from reitermarkus/docker
Try caching the Docker image.
parents
351315fb
85968040
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.github/workflows/tests.yml
+3
-1
3 additions, 1 deletion
.github/workflows/tests.yml
Dockerfile
+1
-0
1 addition, 0 deletions
Dockerfile
Dockerfile.yml
+35
-27
35 additions, 27 deletions
Dockerfile.yml
with
39 additions
and
28 deletions
.github/workflows/tests.yml
+
3
−
1
View file @
94233cf4
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
0
View file @
94233cf4
...
...
@@ -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/
\
...
...
This diff is collapsed.
Click to expand it.
Dockerfile.yml
+
35
−
27
View file @
94233cf4
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment