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
e51002ab
Unverified
Commit
e51002ab
authored
Jun 07, 2020
by
Edward Thomson
Committed by
GitHub
Jun 07, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update main.yml
parent
8f48cbf7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
36 deletions
+36
-36
.github/workflows/main.yml
+36
-36
No files found.
.github/workflows/main.yml
View file @
e51002ab
...
@@ -15,44 +15,44 @@ jobs:
...
@@ -15,44 +15,44 @@ jobs:
# to download the image tagged with that sha. If it does not exist, we'll do a docker
# 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
# 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.
# with both the sha and "latest" so that the subsequent runs need not know the sha.
build_containers
:
#
build_containers:
strategy
:
#
strategy:
matrix
:
#
matrix:
container
:
#
container:
-
{
name
:
xenial
,
base
:
'
ubuntu:xenial'
}
#
- { name: xenial, base: 'ubuntu:xenial' }
-
{
name
:
bionic
,
base
:
'
ubuntu:bionic'
}
#
- { name: bionic, base: 'ubuntu:bionic' }
env
:
#
env:
docker-config-path
:
azure-pipelines/docker
#
docker-config-path: azure-pipelines/docker
docker-registry
:
docker.pkg.github.com
#
docker-registry: docker.pkg.github.com
name
:
Create docker image
#
name: Create docker image
runs-on
:
ubuntu-latest
#
runs-on: ubuntu-latest
steps
:
#
steps:
-
name
:
Check out repository
#
- name: Check out repository
uses
:
actions/checkout@v2
#
uses: actions/checkout@v2
with
:
#
with:
fetch-depth
:
0
#
fetch-depth: 0
-
name
:
Calculate image label
#
- name: Calculate image label
run
:
|
#
run: |
echo "::set-env name=docker-container::${{ github.repository }}/${{ matrix.container.name }}"
#
echo "::set-env name=docker-container::${{ github.repository }}/${{ matrix.container.name }}"
echo "::set-env name=docker-sha-tag::test4-$(git log -1 --pretty=format:"%h" -- ${{ env.docker-config-path }})"
#
echo "::set-env name=docker-sha-tag::test4-$(git log -1 --pretty=format:"%h" -- ${{ env.docker-config-path }})"
-
name
:
Download existing image
#
- name: Download existing image
run
:
|
#
run: |
docker login https://${{ env.docker-registry }} -u ${{ github.actor }} -p ${{ github.token }}
#
docker login https://${{ env.docker-registry }} -u ${{ github.actor }} -p ${{ github.token }}
#
echo "::set-env name=docker-container-exists::true"
#
echo "::set-env name=docker-container-exists::true"
docker pull ${{ env.docker-registry }}/${{ env.docker-container }}:${{ env.docker-sha-tag }} || echo "::set-env name=docker-container-exists::false"
#
docker pull ${{ env.docker-registry }}/${{ env.docker-container }}:${{ env.docker-sha-tag }} || echo "::set-env name=docker-container-exists::false"
-
name
:
Build and publish image
#
- name: Build and publish image
run
:
|
#
run: |
docker build -t ${{ env.docker-registry }}/${{ env.docker-container }}:${{ env.docker-sha-tag }} --build-arg BASE=${{ matrix.container.base }} -f ${{ matrix.container.name }} .
#
docker build -t ${{ env.docker-registry }}/${{ env.docker-container }}:${{ env.docker-sha-tag }} --build-arg BASE=${{ matrix.container.base }} -f ${{ matrix.container.name }} .
docker tag ${{ env.docker-registry }}/${{ env.docker-container }}:${{ env.docker-sha-tag }} ${{ env.docker-registry }}/${{ env.docker-container }}:latest
#
docker tag ${{ env.docker-registry }}/${{ env.docker-container }}:${{ env.docker-sha-tag }} ${{ env.docker-registry }}/${{ env.docker-container }}:latest
docker push ${{ env.docker-registry }}/${{ env.docker-container }}:${{ env.docker-sha-tag }}
#
docker push ${{ env.docker-registry }}/${{ env.docker-container }}:${{ env.docker-sha-tag }}
docker push ${{ env.docker-registry }}/${{ env.docker-container }}:latest
#
docker push ${{ env.docker-registry }}/${{ env.docker-container }}:latest
working-directory
:
${{ env.docker-config-path }}
#
working-directory: ${{ env.docker-config-path }}
if
:
env.docker-container-exists != 'true'
#
if: env.docker-container-exists != 'true'
# Run our CI/CD builds.
# Run our CI/CD builds.
build
:
build
:
needs
:
[
build_containers
]
#
needs: [build_containers]
strategy
:
strategy
:
matrix
:
matrix
:
platform
:
platform
:
...
@@ -102,7 +102,7 @@ jobs:
...
@@ -102,7 +102,7 @@ jobs:
docker_container="${{ github.repository }}/${{ matrix.platform.image }}:latest"
docker_container="${{ github.repository }}/${{ matrix.platform.image }}:latest"
docker login https://${{ env.foo }} -u ${{ github.actor }} -p ${{ github.token }}
docker login https://${{ env.foo }} -u ${{ github.actor }} -p ${{ github.token }}
docker pull ${{ env.foo }}/${docker_container}
docker pull ${{ env.foo }}/${docker_container}
docker run -v /tmp/__home__:/home/libgit2 -v $(pwd):/home/libgit2/source -w /home/libgit2/source -e CC -e CMAKE_GENERATOR -e CMAKE_OPTIONS -e PKG_CONFIG_PATH -e SKIP_SSH_TESTS -e SKIP_NEGOTIATE_TESTS ${{ env.foo }}/${docker_container} "mkdir build && cd build && ../azure-pipelines/build.sh && ../azure-pipelines/test.sh"
docker run -v /tmp/__home__:/home/libgit2 -v $(pwd):/home/libgit2/source -w /home/libgit2/source -e CC -e CMAKE_GENERATOR -e CMAKE_OPTIONS -e PKG_CONFIG_PATH -e SKIP_SSH_TESTS -e SKIP_NEGOTIATE_TESTS ${{ env.foo }}/${docker_container} "
pwd && ls -Flas &&
mkdir build && cd build && ../azure-pipelines/build.sh && ../azure-pipelines/test.sh"
else
else
mkdir build && cd build
mkdir build && cd build
../azure-pipelines/build.sh
../azure-pipelines/build.sh
...
...
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