Skip to content
Snippets Groups Projects
Commit 74f6ed77 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

[gitlab-ci] Add .gitlab-ci.yml, currently only with smoke-test stage

parent 0950910a
No related branches found
No related tags found
No related merge requests found
image: "flowdalic/debian-dev:1.11"
before_script:
- apt-get update && apt-get install -y nasm
- apt-get install -y -t testing valgrind
- |
TOOLS="cc c++ clang clang++ gcc g++ clang-tidy clang meson nasm include-what-you-use valgrind"
for tool in $TOOLS; do
echo "$tool version"
$tool --version
done
stages:
- smoke-test
smoke-test:
stage: smoke-test
script: make smoke-test
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