Skip to content
Snippets Groups Projects
Commit 25dd18b8 authored by Matthias Simon's avatar Matthias Simon
Browse files

Add initial .gitlab-ci.yml

parent 7a6fa16c
Branches
Tags
No related merge requests found
Pipeline #12625 failed with stage
in 10 seconds
stages:
- test
- package
- deploy
# format-check verifies that our tests follow guide lines, are well named and
# formatted.
format-check:
stage: test
script:
- ./build-aux/check-consistency
- ./build-aux/tidy-tests
- if ! git diff --quiet; echo "ATS is not tidied. Please run ./build-aux/tidy-tests locally and verify. Thanks."; exit 1; fi
#!/bin/bash -e
# tidy-tests performs various cleanups on the test suite.
: "Remove dot-files"
find ATS -name ".*" | xargs rm -rfv
......@@ -17,5 +16,3 @@ find ATS -type f -name \*.ttcn | xargs dos2unix -q
: "TTCN-3: Remove trailing whitespace"
find ATS -type f -name \*.ttcn | xargs sed -i 's/[[:space:]]*$//'
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment