mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-02-05 19:39:50 +08:00
16 lines
377 B
YAML
16 lines
377 B
YAML
build:
|
|
stage: build
|
|
|
|
before_script:
|
|
- apt update
|
|
- apt install -y linux-source linux-headers-4.19.0-16-all
|
|
|
|
script:
|
|
- ./bootstrap
|
|
- ./configure --with-linux-dir=/usr/src/linux-headers-4.19.0-16-amd64 --disable-8139too
|
|
- make -j8 all modules
|
|
|
|
include:
|
|
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
|
|
|