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
3454dd64
Unverified
Commit
3454dd64
authored
Jun 06, 2020
by
Edward Thomson
Committed by
GitHub
Jun 06, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update main.yml
parent
43667e57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
11 deletions
+16
-11
.github/workflows/main.yml
+16
-11
No files found.
.github/workflows/main.yml
View file @
3454dd64
...
...
@@ -7,6 +7,11 @@ on:
branches
:
[
master
,
maint/*
]
jobs
:
# Build the docker container images that we will use for our Linux builds. This will
# identify the last commit to the repository that updated the docker images, and try
# to download the image tagged with that sha. If it does not exist, we'll do a docker
# build and push the image up to GitHub Packages for the actual CI/CD runs. We tag
# with both the sha and "latest" so that the subsequent runs need not know the sha.
build_containers
:
strategy
:
matrix
:
...
...
@@ -24,20 +29,20 @@ jobs:
fetch-depth
:
0
-
name
:
Calculate image label
run
:
|
echo "::set-env name=docker-label::test3-$(git log -1 --pretty=format:"%h" -- ${{ env.docker-config-path }})"
-
name
:
Log in to GitHub Packages
echo "::set-env name=docker-container::${{ github.repository }}/${{ matrix.container.name }}"
echo "::set-env name=docker-container-url::docker.pkg.github.com/${{ env.docker-container }}"
echo "::set-env name=docker-sha-tag::test3-$(git log -1 --pretty=format:"%h" -- ${{ env.docker-config-path }})"
-
name
:
Download existing image
run
:
|
docker login https://docker.pkg.github.com -u ${{github.actor}} -p ${{github.token}}
-
name
:
Download image
run
:
|
echo "::set-env name=docker-exists::true"
docker pull
docker.pkg.github.com/${{ github.repository }}/${{ matrix.container.name }}:${{ env.docker-label
}} || echo "::set-env name=docker-exists::false"
-
name
:
Build image
docker pull
${{ env.docker-container-url }}:${{ env.docker-sha-tag
}} || echo "::set-env name=docker-exists::false"
-
name
:
Build
and publish
image
run
:
|
docker build -t docker.pkg.github.com/${{ github.repository }}/${{ matrix.container.name }}:${{ env.docker-label }} --build-arg BASE=${{ matrix.container.base }} -f ${{ matrix.container.name }} .
docker build -t ${{ env.docker-container-url }}:${{ env.docker-sha-tag }} --build-arg BASE=${{ matrix.container.base }} -f ${{ matrix.container.name }} .
docker tag ${{ env.docker-container-url }}:${{ env.docker-sha-tag }} ${{ env.docker-container-url }}:latest
docker push ${{ docker.container-url }}:${{ env.docker-sha-tag }}
docker push ${{ docker.container-url }}:latest
working-directory
:
${{ env.docker-config-path }}
if
:
env.docker-exists != 'true'
-
name
:
Publish image
run
:
|
docker push docker.pkg.github.com/${{ github.repository }}/${{ matrix.container.name }}:${{ env.docker-label }}
if
:
env.docker-exists != 'true'
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