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
508d9359
Commit
508d9359
authored
Nov 23, 2020
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: introduce arm nightly builds for GitHub Actions
parent
5a9d16dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
86 additions
and
21 deletions
+86
-21
.github/workflows/nightly.yml
+86
-21
No files found.
.github/workflows/nightly.yml
View file @
508d9359
...
@@ -11,41 +11,49 @@ env:
...
@@ -11,41 +11,49 @@ env:
docker-config-path
:
ci/docker
docker-config-path
:
ci/docker
jobs
:
jobs
:
# Run our nightly builds. We build a matrix with the various build
# targets and their details. Then we build either in a docker container
# (Linux) or on the actual hosts (macOS, Windows).
build
:
build
:
name
:
Build
name
:
Build
strategy
:
strategy
:
matrix
:
matrix
:
platform
:
platform
:
-
# Xenial, GCC, OpenSSL
-
# Xenial, GCC, OpenSSL
image
:
xenial
container
:
name
:
xenial
env
:
env
:
CC
:
gcc
CC
:
gcc
CMAKE_GENERATOR
:
Ninja
CMAKE_GENERATOR
:
Ninja
CMAKE_OPTIONS
:
-DUSE_HTTPS=OpenSSL -DREGEX_BACKEND=builtin -DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
CMAKE_OPTIONS
:
-DUSE_HTTPS=OpenSSL -DREGEX_BACKEND=builtin -DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
os
:
ubuntu-latest
os
:
ubuntu-latest
-
# Xenial, GCC, mbedTLS
-
# Xenial, GCC, mbedTLS
image
:
xenial
container
:
name
:
xenial
env
:
env
:
CC
:
gcc
CC
:
gcc
CMAKE_GENERATOR
:
Ninja
CMAKE_GENERATOR
:
Ninja
CMAKE_OPTIONS
:
-DUSE_HTTPS=mbedTLS -DUSE_SHA1=HTTPS -DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
CMAKE_OPTIONS
:
-DUSE_HTTPS=mbedTLS -DUSE_SHA1=HTTPS -DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
os
:
ubuntu-latest
os
:
ubuntu-latest
-
# Xenial, Clang, OpenSSL
-
# Xenial, Clang, OpenSSL
image
:
xenial
container
:
name
:
xenial
env
:
env
:
CC
:
clang
CC
:
clang
CMAKE_GENERATOR
:
Ninja
CMAKE_GENERATOR
:
Ninja
CMAKE_OPTIONS
:
-DUSE_HTTPS=OpenSSL -DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
CMAKE_OPTIONS
:
-DUSE_HTTPS=OpenSSL -DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
os
:
ubuntu-latest
os
:
ubuntu-latest
-
# Xenial, Clang, mbedTLS
-
# Xenial, Clang, mbedTLS
image
:
xenial
container
:
name
:
xenial
env
:
env
:
CC
:
clang
CC
:
clang
CMAKE_OPTIONS
:
-DUSE_HTTPS=mbedTLS -DUSE_SHA1=HTTPS -DREGEX_BACKEND=pcre -DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
CMAKE_OPTIONS
:
-DUSE_HTTPS=mbedTLS -DUSE_SHA1=HTTPS -DREGEX_BACKEND=pcre -DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
CMAKE_GENERATOR
:
Ninja
CMAKE_GENERATOR
:
Ninja
os
:
ubuntu-latest
os
:
ubuntu-latest
-
# Focal, Clang 10, mbedTLS, MemorySanitizer
-
# Focal, Clang 10, mbedTLS, MemorySanitizer
image
:
focal
container
:
name
:
focal
env
:
env
:
CC
:
clang-10
CC
:
clang-10
CFLAGS
:
-fsanitize=memory -fsanitize-memory-track-origins=2 -fsanitize-blacklist=/home/libgit2/source/script/sanitizers.supp -fno-optimize-sibling-calls -fno-omit-frame-pointer
CFLAGS
:
-fsanitize=memory -fsanitize-memory-track-origins=2 -fsanitize-blacklist=/home/libgit2/source/script/sanitizers.supp -fno-optimize-sibling-calls -fno-omit-frame-pointer
...
@@ -56,7 +64,8 @@ jobs:
...
@@ -56,7 +64,8 @@ jobs:
ASAN_SYMBOLIZER_PATH
:
/usr/bin/llvm-symbolizer-10
ASAN_SYMBOLIZER_PATH
:
/usr/bin/llvm-symbolizer-10
os
:
ubuntu-latest
os
:
ubuntu-latest
-
# Focal, Clang 10, OpenSSL, UndefinedBehaviorSanitizer
-
# Focal, Clang 10, OpenSSL, UndefinedBehaviorSanitizer
image
:
focal
container
:
name
:
focal
env
:
env
:
CC
:
clang-10
CC
:
clang-10
CFLAGS
:
-fsanitize=undefined,nullability -fno-sanitize-recover=undefined,nullability -fsanitize-blacklist=/home/libgit2/source/script/sanitizers.supp -fno-optimize-sibling-calls -fno-omit-frame-pointer
CFLAGS
:
-fsanitize=undefined,nullability -fno-sanitize-recover=undefined,nullability -fsanitize-blacklist=/home/libgit2/source/script/sanitizers.supp -fno-optimize-sibling-calls -fno-omit-frame-pointer
...
@@ -66,11 +75,19 @@ jobs:
...
@@ -66,11 +75,19 @@ jobs:
SKIP_NEGOTIATE_TESTS
:
true
SKIP_NEGOTIATE_TESTS
:
true
ASAN_SYMBOLIZER_PATH
:
/usr/bin/llvm-symbolizer-10
ASAN_SYMBOLIZER_PATH
:
/usr/bin/llvm-symbolizer-10
os
:
ubuntu-latest
os
:
ubuntu-latest
-
# linux arm64
-
# Focal, Clang 10, OpenSSL, ThreadSanitizer
os
:
[
focal
,
arm64
,
self-hosted
]
container
:
name
:
focal
env
:
env
:
CC
:
gcc
CC
:
clang-10
CMAKE_OPTIONS
:
-DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
CFLAGS
:
-fsanitize=thread -fno-optimize-sibling-calls -fno-omit-frame-pointer
CMAKE_OPTIONS
:
-DCMAKE_PREFIX_PATH=/usr/local -DUSE_HTTPS=OpenSSL -DUSE_SHA1=HTTPS -DREGEX_BACKEND=pcre -DDEPRECATE_HARD=ON -DUSE_BUNDLED_ZLIB=ON
CMAKE_GENERATOR
:
Ninja
SKIP_SSH_TESTS
:
true
SKIP_NEGOTIATE_TESTS
:
true
ASAN_SYMBOLIZER_PATH
:
/usr/bin/llvm-symbolizer-10
TSAN_OPTIONS
:
suppressions=/home/libgit2/source/script/thread-sanitizer.supp second_deadlock_stack=1
os
:
ubuntu-latest
-
# macOS
-
# macOS
os
:
macos-10.15
os
:
macos-10.15
env
:
env
:
...
@@ -86,7 +103,7 @@ jobs:
...
@@ -86,7 +103,7 @@ jobs:
env
:
env
:
ARCH
:
amd64
ARCH
:
amd64
CMAKE_GENERATOR
:
Visual Studio 16 2019
CMAKE_GENERATOR
:
Visual Studio 16 2019
CMAKE_OPTIONS
:
-A x64 -D
MSVC_CRTDBG
=ON -DDEPRECATE_HARD=ON
CMAKE_OPTIONS
:
-A x64 -D
WIN32_LEAKCHECK
=ON -DDEPRECATE_HARD=ON
SKIP_SSH_TESTS
:
true
SKIP_SSH_TESTS
:
true
SKIP_NEGOTIATE_TESTS
:
true
SKIP_NEGOTIATE_TESTS
:
true
-
# Windows x86 Visual Studio
-
# Windows x86 Visual Studio
...
@@ -94,7 +111,7 @@ jobs:
...
@@ -94,7 +111,7 @@ jobs:
env
:
env
:
ARCH
:
x86
ARCH
:
x86
CMAKE_GENERATOR
:
Visual Studio 16 2019
CMAKE_GENERATOR
:
Visual Studio 16 2019
CMAKE_OPTIONS
:
-A Win32 -D
MSVC_CRTDBG
=ON -DDEPRECATE_HARD=ON -DUSE_SHA1=HTTPS -DUSE_BUNDLED_ZLIB=ON
CMAKE_OPTIONS
:
-A Win32 -D
WIN32_LEAKCHECK
=ON -DDEPRECATE_HARD=ON -DUSE_SHA1=HTTPS -DUSE_BUNDLED_ZLIB=ON
SKIP_SSH_TESTS
:
true
SKIP_SSH_TESTS
:
true
SKIP_NEGOTIATE_TESTS
:
true
SKIP_NEGOTIATE_TESTS
:
true
-
# Windows amd64 mingw
-
# Windows amd64 mingw
...
@@ -119,9 +136,53 @@ jobs:
...
@@ -119,9 +136,53 @@ jobs:
BUILD_PATH
:
D:\Temp\mingw32\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\CMake\bin
BUILD_PATH
:
D:\Temp\mingw32\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\CMake\bin
SKIP_SSH_TESTS
:
true
SKIP_SSH_TESTS
:
true
SKIP_NEGOTIATE_TESTS
:
true
SKIP_NEGOTIATE_TESTS
:
true
-
# Bionic, x86, Clang, OpenSSL
container
:
name
:
bionic-x86
dockerfile
:
bionic
qemu
:
true
env
:
CC
:
clang
CMAKE_GENERATOR
:
Ninja
CMAKE_OPTIONS
:
-DUSE_HTTPS=OpenSSL -DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
RUN_INVASIVE_TESTS
:
true
os
:
ubuntu-latest
-
# Bionic, x86, GCC, OpenSSL
container
:
name
:
bionic-x86
dockerfile
:
bionic
env
:
CC
:
gcc
CMAKE_GENERATOR
:
Ninja
CMAKE_OPTIONS
:
-DUSE_HTTPS=OpenSSL -DDEPRECATE_HARD=ON -DUSE_LEAK_CHECKER=valgrind -DUSE_GSSAPI=ON
RUN_INVASIVE_TESTS
:
true
os
:
ubuntu-latest
-
# Bionic, arm32, GCC, OpenSSL
container
:
name
:
bionic-arm32
dockerfile
:
bionic
qemu
:
true
env
:
CC
:
gcc
CMAKE_GENERATOR
:
Ninja
CMAKE_OPTIONS
:
-DUSE_HTTPS=OpenSSL -DDEPRECATE_HARD=ON -DUSE_GSSAPI=ON
RUN_INVASIVE_TESTS
:
true
SKIP_PROXY_TESTS
:
true
os
:
ubuntu-latest
-
# Bionic, arm64, GCC, OpenSSL
container
:
name
:
bionic-arm64
dockerfile
:
bionic
qemu
:
true
env
:
CC
:
gcc
CMAKE_GENERATOR
:
Ninja
CMAKE_OPTIONS
:
-DUSE_HTTPS=OpenSSL -DDEPRECATE_HARD=ON -DUSE_GSSAPI=ON
RUN_INVASIVE_TESTS
:
true
SKIP_PROXY_TESTS
:
true
os
:
ubuntu-latest
fail-fast
:
false
fail-fast
:
false
env
:
env
:
${{ matrix.platform.env }}
ACTIONS_RUNNER_TOKEN
:
${{ secrets.ACTIONS_RUNNER_TOKEN }}
runs-on
:
${{ matrix.platform.os }}
runs-on
:
${{ matrix.platform.os }}
steps
:
steps
:
-
name
:
Check out repository
-
name
:
Check out repository
...
@@ -131,23 +192,27 @@ jobs:
...
@@ -131,23 +192,27 @@ jobs:
-
name
:
Set up build environment
-
name
:
Set up build environment
run
:
ci/setup-${{ matrix.platform.setup-script }}.sh
run
:
ci/setup-${{ matrix.platform.setup-script }}.sh
shell
:
bash
shell
:
bash
env
:
${{ matrix.platform.env }}
if
:
matrix.platform.setup-script != ''
if
:
matrix.platform.setup-script != ''
-
name
:
Setup QEMU
run
:
docker run --rm --privileged multiarch/qemu-user-static:register --reset
if
:
matrix.platform.container.qemu ==
true
-
name
:
Download container
-
name
:
Download container
run
:
ci/getcontainer.sh ${{ env.docker-config-path }}/${{ matrix.platform.image }}
run
:
|
"${{ github.workspace }}/ci/getcontainer.sh" "${{ matrix.platform.container.name }}" "${{ matrix.platform.container.dockerfile }}"
env
:
env
:
DOCKER_REGISTRY
:
${{ env.docker-registry }}
DOCKER_REGISTRY
:
${{ env.docker-registry }}
GITHUB_TOKEN
:
${{ secrets.github_token }}
GITHUB_TOKEN
:
${{ secrets.github_token }}
if
:
matrix.platform.image != ''
working-directory
:
${{ env.docker-config-path }}
if
:
matrix.platform.container.name != ''
-
name
:
Create container
-
name
:
Create container
run
:
docker build -t ${{ env.docker-registry-container-sha }} -f ${{
matrix.platform.imag
e }} .
run
:
docker build -t ${{ env.docker-registry-container-sha }} -f ${{
env.dockerfil
e }} .
working-directory
:
${{ env.docker-config-path }}
working-directory
:
${{ env.docker-config-path }}
if
:
matrix.platform.
imag
e != '' && env.docker-container-exists != 'true'
if
:
matrix.platform.
container.nam
e != '' && env.docker-container-exists != 'true'
-
name
:
Build and test
-
name
:
Build and test
run
:
|
run
:
|
export GITTEST_NEGOTIATE_PASSWORD="${{ secrets.GITTEST_NEGOTIATE_PASSWORD }}"
export GITTEST_NEGOTIATE_PASSWORD="${{ secrets.GITTEST_NEGOTIATE_PASSWORD }}"
if [ -n "${{ matrix.platform.
imag
e }}" ]; then
if [ -n "${{ matrix.platform.
container.nam
e }}" ]; then
docker run \
docker run \
--rm \
--rm \
-v "$(pwd):/home/libgit2/source" \
-v "$(pwd):/home/libgit2/source" \
...
@@ -161,6 +226,7 @@ jobs:
...
@@ -161,6 +226,7 @@ jobs:
-e PKG_CONFIG_PATH \
-e PKG_CONFIG_PATH \
-e SKIP_NEGOTIATE_TESTS \
-e SKIP_NEGOTIATE_TESTS \
-e SKIP_SSH_TESTS \
-e SKIP_SSH_TESTS \
-e TSAN_OPTIONS \
${{ env.docker-registry-container-sha }} \
${{ env.docker-registry-container-sha }} \
/bin/bash -c "mkdir build && cd build && ../ci/build.sh && ../ci/test.sh"
/bin/bash -c "mkdir build && cd build && ../ci/build.sh && ../ci/test.sh"
else
else
...
@@ -168,5 +234,4 @@ jobs:
...
@@ -168,5 +234,4 @@ jobs:
../ci/build.sh
../ci/build.sh
../ci/test.sh
../ci/test.sh
fi
fi
env
:
${{ matrix.platform.env }}
shell
:
bash
shell
:
bash
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