kosmos/.gitlab-ci.yml
2016-08-01 14:57:52 +02:00

74 lines
1.2 KiB
YAML

variables:
SW_KERNEL: "0"
SW_MAJOR: "0"
SW_MINOR: "1"
before_script:
- "echo $CI_BUILD_ID"
- "echo $CI_BUILD_REF_NAME"
stages:
- check
- build
# - test
- deploy
build_job:
script:
- "make all BOARD=stm32f4-discovery"
stage: build
except:
- /^release/.*$/
check_job:
script:
- "make check BOARD=stm32f4-discovery"
stage: check
deploy_job:
stage: deploy
script:
- "source/scripts/release_number.py"
- "make deploy BOARD=stm32f4-discovery"
artifacts:
paths:
- *.xs
only:
- /^release/.*$/
except:
- tags
#test_job:
# script:
# - "make install APP=test BOARD=stm32f4-discovery"
# stage: test
#int_release_job:
# script:
# - "cd top_agricola/core"
# - "./generate_ci_makefile.py"
# - "make -f Makefile_ci.gen all"
# - "cd ci"
# - "./deploy_release.py -t rc"
# stage: deploy
# only:
# - /^release/.*$/
# except:
# - tags
#ext_release_job:
# script:
# - "cd top_agricola/core"
# - "./generate_ci_makefile.py"
# - "make -f Makefile_ci.gen all"
# - "cd ci"
# - "./deploy_release.py -t r"
# stage: deploy
# only:
# - /^release/174_AG.*$/
# except:
# - branches