Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aur-autobuild-mirror
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Recolic
aur-autobuild-mirror
Merge requests
!1
An error occurred while fetching the assigned milestone of the selected merge_request.
auto build
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
auto build
dind-test
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Recolic
requested to merge
dind-test
into
master
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
95ebb13e
Show latest version
1 file
+
28
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
95ebb13e
auto build
· 95ebb13e
Recolic
authored
1 year ago
.gitlab-ci.yaml
0 → 100644
+
28
−
0
Options
default
:
image
:
docker:20.10.16
services
:
-
docker:20.10.16-dind
before_script
:
-
docker info
variables
:
# When you use the dind service, you must instruct Docker to talk with
# the daemon started inside of the service. The daemon is available
# with a network connection instead of the default
# /var/run/docker.sock socket. Docker 19.03 does this automatically
# by setting the DOCKER_HOST in
# https://github.com/docker-library/docker/blob/d45051476babc297257df490d22cbd806f1b11e4/19.03/docker-entrypoint.sh#L23-L29
#
# The 'docker' hostname is the alias of the service container as described at
# https://docs.gitlab.com/ee/ci/services/#accessing-the-services.
#
# Specify to Docker where to create the certificates. Docker
# creates them automatically on boot, and creates
# `/certs/client` to share between the service and job
# container, thanks to volume mount from config.toml
DOCKER_TLS_CERTDIR
:
"
/certs"
build
:
stage
:
build
script
:
-
cd docker-pikaur/ && docker build -t recolic/pikaur .
Loading