Skip to content
Snippets Groups Projects
Commit 1666e19c authored by Fabrizio Castro's avatar Fabrizio Castro
Browse files

[HACK] Add .gitlab-ci.yml


Signed-off-by: default avatarFabrizio Castro <fabrizio.castro@collabora.com>
parent 7c1db58d
No related branches found
No related tags found
No related merge requests found
Pipeline #6983 passed with stage
in 18 minutes and 8 seconds
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
- make ew_demo_defconfig
- make -j$(nproc) bindeb-pkg
- mkdir artifacts && dcmd mv ../*.changes artifacts/
- cp $(ls artifacts/linux-image*_arm64.deb | grep -v dbg) artifacts/linux-image_arm64.deb
artifacts:
name: debs
paths:
- $CI_PROJECT_DIR/artifacts/*.deb
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment