Skip to content
Snippets Groups Projects
Commit ccd58405 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

don't always test bob-devel and deps

parent 3034ec7c
No related branches found
No related tags found
No related merge requests found
Pipeline #54503 passed
...@@ -67,12 +67,20 @@ stages: ...@@ -67,12 +67,20 @@ stages:
build_linux_bob_devel: build_linux_bob_devel:
extends: .build_linux_template extends: .build_linux_template
# run bob-devel test only when bob/devtools/data/conda_build_config.yaml changes
only:
changes:
- bob/devtools/data/conda_build_config.yaml
script: script:
- sudo yum install -y mesa-libGL-devel # need this for pyopengl - sudo yum install -y mesa-libGL-devel # need this for pyopengl
- python3 ./bob/devtools/build.py -vv build-bob-devel - python3 ./bob/devtools/build.py -vv build-bob-devel
build_linux_deps: build_linux_deps:
extends: .build_linux_template extends: .build_linux_template
# run deps test only when deps changes
only:
changes:
- deps/**/*
script: script:
- python3 ./bob/devtools/build.py -vv build-deps - python3 ./bob/devtools/build.py -vv build-deps
...@@ -85,11 +93,19 @@ build_linux_bob_devtools: ...@@ -85,11 +93,19 @@ build_linux_bob_devtools:
build_macos_intel_bob_devel: build_macos_intel_bob_devel:
extends: .build_macos_intel_template extends: .build_macos_intel_template
# run bob-devel test only when bob/devtools/data/conda_build_config.yaml changes
only:
changes:
- bob/devtools/data/conda_build_config.yaml
script: script:
- python3 ./bob/devtools/build.py -vv build-bob-devel - python3 ./bob/devtools/build.py -vv build-bob-devel
build_macos_intel_deps: build_macos_intel_deps:
extends: .build_macos_intel_template extends: .build_macos_intel_template
# run deps test only when deps changes
only:
changes:
- deps/**/*
script: script:
- python3 ./bob/devtools/build.py -vv build-deps - python3 ./bob/devtools/build.py -vv build-deps
......
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