Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
a09d4367
Unverified
Commit
a09d4367
authored
Aug 23, 2021
by
Edward Thomson
Committed by
GitHub
Aug 23, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6000 from libgit2/ethomson/ci
ci: tag new containers with the latest tag
parents
76c503c3
dbcb1cd7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
0 deletions
+8
-0
.github/workflows/main.yml
+2
-0
ci/docker/bionic
+1
-0
ci/docker/centos7
+1
-0
ci/docker/centos8
+1
-0
ci/docker/docurium
+1
-0
ci/docker/focal
+1
-0
ci/docker/xenial
+1
-0
No files found.
.github/workflows/main.yml
View file @
a09d4367
...
...
@@ -70,7 +70,9 @@ jobs:
BASE_ARG="--build-arg BASE=${{ matrix.container.base }}"
fi
docker build -t ${{ env.docker-registry-container-sha }} ${BASE_ARG} -f ${{ env.dockerfile }} .
docker tag ${{ env.docker-registry-container-sha }} ${{ env.docker-registry-container-latest }}
docker push ${{ env.docker-registry-container-sha }}
docker push ${{ env.docker-registry-container-latest }}
working-directory
:
${{ env.docker-config-path }}
if
:
github.event_name != 'pull_request' && env.docker-container-exists != 'true'
...
...
ci/docker/bionic
View file @
a09d4367
ARG BASE=ubuntu:bionic
FROM ${BASE} AS apt
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
...
...
ci/docker/centos7
View file @
a09d4367
ARG BASE=centos:7
FROM ${BASE} AS yum
RUN yum install -y \
which \
...
...
ci/docker/centos8
View file @
a09d4367
ARG BASE=centos:8
FROM ${BASE} AS yum
RUN yum install -y \
which \
...
...
ci/docker/docurium
View file @
a09d4367
ARG BASE=ubuntu:bionic
FROM ${BASE}
RUN apt update && apt install -y cmake pkg-config ruby ruby-dev llvm libclang-dev libssl-dev python-pygments
RUN gem install docurium
ci/docker/focal
View file @
a09d4367
ARG BASE=ubuntu:focal
FROM ${BASE} AS apt
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
...
...
ci/docker/xenial
View file @
a09d4367
ARG BASE=ubuntu:xenial
FROM ${BASE} AS apt
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment