blob: 38b37235cac3a55f41c47fff37a2ce73d0e59ac6 [file] [log] [blame]
variables:
APT_OPTIONS: -y --allow-unauthenticated
ARCH: arm64
CROSS_COMPILE: aarch64-linux-gnu-
CCACHE_BASEDIR: $CI_PROJECT_DIR
CCACHE_DIR: $CI_PROJECT_DIR/ccache
stages:
- build
# Retry jobs after runner system failures
.retry: &retry
retry:
max: 2
when:
- runner_system_failure
build:
stage: build
image: debian:testing
cache:
paths:
- ccache
before_script:
- echo "deb http://deb.debian.org/debian testing main contrib non-free" > /etc/apt/sources.list
- echo "deb-src http://deb.debian.org/debian testing main contrib non-free" >> /etc/apt/sources.list
- apt-get update && apt-get $APT_OPTIONS build-dep linux && apt-get $APT_OPTIONS install devscripts ccache fakeroot gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
script:
- export PATH="/usr/lib/ccache:$PATH"
- ccache -s
- scripts/kconfig/merge_config.sh -m arch/arm64/configs/defconfig .gitlab-ci/fragment.cfg
- make olddefconfig
- make -j$(nproc)
- make INSTALL_MOD_PATH=./tmp modules_install
- cd tmp
- tar -cJf ../modules.tar.xz .
- cd - > /dev/null
- mkdir artifacts
- cp arch/arm64/boot/Image artifacts/
- cp arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dtb artifacts/
- cp arch/arm64/boot/dts/mediatek/mt8173-elm-hana.dtb artifacts/
- cp modules.tar.xz artifacts/
artifacts:
name: binaries
paths:
- $CI_PROJECT_DIR/artifacts/*