Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
nettle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Wim Lewis
nettle
Commits
6950f151
Commit
6950f151
authored
Nov 19, 2018
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
Copy .gitlab-ci.yml from master branch
parent
8514df12
Branches
Branches containing commit
Tags
0.1
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+40
-16
40 additions, 16 deletions
.gitlab-ci.yml
with
40 additions
and
16 deletions
.gitlab-ci.yml
+
40
−
16
View file @
6950f151
variables
:
variables
:
BUILD_IMAGES_PROJECT
:
gnutls/build-images
BUILD_IMAGES_PROJECT
:
gnutls/build-images
FEDORA_BUILD
:
buildenv-f26
DEBIAN_CROSS_BUILD
:
buildenv-debian-cross
FEDORA_X86_BUILD
:
buildenv-f26-x86
FEDORA_BUILD
:
buildenv-f28
FEDORA_X86_BUILD
:
buildenv-f28-x86
GET_SOURCES_ATTEMPTS
:
"
3"
GET_SOURCES_ATTEMPTS
:
"
3"
# remove any pre-installed headers from nettle
# remove any pre-installed headers from nettle
...
@@ -13,7 +14,7 @@ build/x86-64:
...
@@ -13,7 +14,7 @@ build/x86-64:
image
:
$CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
image
:
$CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
script
:
script
:
-
./.bootstrap &&
-
./.bootstrap &&
./configure --enable-fat --disable-documentation && make -j4 &&
./configure
--disable-static
--enable-fat --disable-documentation && make -j4 &&
make check -j4
make check -j4
tags
:
tags
:
-
shared
-
shared
...
@@ -29,19 +30,6 @@ build/x86:
...
@@ -29,19 +30,6 @@ build/x86:
-
shared
-
shared
except
:
except
:
-
tags
-
tags
build/aarch64
:
before_script
:
-
/bin/true
script
:
-
./.bootstrap &&
./configure --enable-fat --disable-documentation && make -j4 &&
make check -j4
tags
:
-
aarch64
only
:
-
branches@gnutls/nettle
except
:
-
tags
build/mini-gmp
:
build/mini-gmp
:
image
:
$CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
image
:
$CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
script
:
script
:
...
@@ -101,3 +89,39 @@ build/gnutls:
...
@@ -101,3 +89,39 @@ build/gnutls:
-
shared
-
shared
except
:
except
:
-
tags
-
tags
artifacts
:
expire_in
:
1 week
when
:
on_failure
paths
:
-
gnutls-git/guile/tests/*.log
-
gnutls-git/tests/*.log
-
gnutls-git/*.log
-
gnutls-git/tests/*/*.log
-
gnutls-git/tests/suite/*/*.log
.Debian.cross.template
:
&Debian_cross_template
image
:
$CI_REGISTRY/$BUILD_IMAGES_PROJECT:$DEBIAN_CROSS_BUILD
before_script
:
# remove any previously installed nettle headers to avoid conflicts
-
for arch in armhf mips arm64;do apt-get remove -y nettle-dev:$arch;done
script
:
-
build=$(dpkg-architecture -qDEB_HOST_GNU_TYPE)
-
host="${CI_JOB_NAME#*.cross.}"
# not setting CC_FOR_BUILD paired with qemu-user/binfmt somehow causes
# config.guess to detect the target as the build platform and not activate
# cross-compile mode even though --build is given
-
export CC_FOR_BUILD="gcc"
-
export CC="$host-gcc"
-
./.bootstrap
-
./configure --disable-static --enable-fat --disable-documentation --build=$build --host=$host
-
make -j$(nproc)
-
make -j$(nproc) check
tags
:
-
shared
except
:
-
tags
Debian.cross.arm-linux-gnueabihf
:
<<
:
*Debian_cross_template
Debian.cross.mips-linux-gnu
:
<<
:
*Debian_cross_template
Debian.cross.aarch64-linux-gnu
:
<<
:
*Debian_cross_template
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment