34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
image:
|
|
registry.gitlab.com/etherlab.org/build-container-factory/leap-15.2:linux-syms
|
|
|
|
build:
|
|
stage: build
|
|
|
|
script:
|
|
- ./bootstrap
|
|
- ./configure --with-linux-dir=/usr/src/linux-obj/$(uname -i)/default --disable-8139too --enable-tty --with-devices=2 --enable-ccat
|
|
- make -j8 all modules
|
|
- make DISTCHECK_CONFIGURE_FLAGS="--with-linux-dir=/usr/src/linux-obj/$(uname -i)/default" distcheck
|
|
|
|
pages:
|
|
stage: deploy
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == "stable-1.5"
|
|
script:
|
|
- ./bootstrap
|
|
- ./configure --with-linux-dir=/usr/src/linux-obj/$(uname -i)/default --disable-8139too --enable-tty --with-devices=2 --enable-ccat
|
|
- doxygen
|
|
- mkdir public
|
|
- echo "/ethercat /ethercat/v1 301" > public/_redirects
|
|
- mv doxygen-output/html/ public/v1/
|
|
artifacts:
|
|
paths:
|
|
- public/
|
|
|
|
# from 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml', but on all branches
|
|
workflow:
|
|
rules:
|
|
- if: $CI_MERGE_REQUEST_IID
|
|
- if: $CI_COMMIT_TAG
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_BRANCH == "stable-1.5"
|