mirror of
https://github.com/linuxboot/heads.git
synced 2025-02-07 11:30:11 +00:00
241b0bc680
- Remove unrecognized configure options - fixes gawk issue #668 by upgrading to libgpg-error 1.37 instead of patching 1.32 for regex change (fixed upstream) - move patches so they match new versions for libassuan, gpg and libgcrypt (no change) Version change: - gpg 2.2.10 -> 2.2.20 - libassuan 2.5.1 -> 2.5.3 - libgcrypt 1.8.3 -> 1.8.5 - libgpg-error 1.32 -> 1.37 Size changes: - gpg 886.5 -> 911.3 kB - gpg-agent: 371.9 -> 376.0 kB - scdaemon: 399.5 -> 407.8 kB - libgpg-error.so.0 125.9 -> 130.0 kB Unrecognized options on gpg2 toolstack: - disable-nls and disable-asm disable-keyserver-helpers disable-hkp disable-finger disable-dns-srv disable-dns-cert and disable-wks-server
30 lines
888 B
YAML
30 lines
888 B
YAML
image: fedora:30
|
|
|
|
variables:
|
|
DOCKER_DRIVER: overlay2
|
|
|
|
stages:
|
|
- build
|
|
|
|
build:
|
|
stage: build
|
|
retry: 2
|
|
cache:
|
|
paths:
|
|
- ./
|
|
key: "$CI_COMMIT_REF_SLUG"
|
|
script:
|
|
- dnf install -y @development-tools gcc-c++ gcc-gnat zlib-devel perl-Digest-MD5 perl-Digest-SHA uuid-devel pcsc-tools ncurses-devel lbzip2 libuuid-devel lzma elfutils-libelf-devel bc bzip2 bison flex git gnupg iasl m4 nasm patch python wget libusb-devel cmake automake pv bsdiff autoconf libtool cpio texinfo
|
|
- git fetch origin
|
|
- git reset --hard origin/$CI_COMMIT_REF_NAME
|
|
- make BOARD=x230 || (find ./build/log/ -cmin 1|xargs tail; exit 1)
|
|
- echo "x230 hashes:"
|
|
- cat ./build/x230/hashes.txt
|
|
- tar zcvf logs.tar.gz ./build/log/*
|
|
artifacts:
|
|
paths:
|
|
- ./build/x230/coreboot.rom
|
|
- ./build/x230/hashes.txt
|
|
- ./build/x230/initrd.cpio.xz
|
|
- ./logs.tar.gz
|