NetExec/.gitlab-ci.yml

18 lines
345 B
YAML
Raw Normal View History

2021-11-18 14:50:58 +00:00
stages :
- build
build_linux :
2021-11-18 15:38:38 +00:00
image: python:3.8-slim
2021-11-18 14:50:58 +00:00
stage: build
before_script:
2021-11-18 15:38:38 +00:00
- apt update
2021-11-18 15:39:44 +00:00
- apt install -y git
2021-11-18 15:38:38 +00:00
- git submodule update --init --recursive
2021-11-18 14:50:58 +00:00
- pip install shiv
script:
- python build_collector.py
artifacts:
untracked: false
expire_in: 30 days
paths: ["./bin/cme", "./bin/cmedb"]