Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TTCN-3 Conformance Tests
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Custom issue tracker
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
MTS - Methods for Testing and Specification
TTCN-3 Conformance Tests
Commits
25dd18b8
Commit
25dd18b8
authored
2 years ago
by
Matthias Simon
Browse files
Options
Downloads
Patches
Plain Diff
Add initial .gitlab-ci.yml
parent
7a6fa16c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#12625
failed with stage
Stage:
in 10 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+13
-0
13 additions, 0 deletions
.gitlab-ci.yml
build-aux/tidy-tests
+0
-3
0 additions, 3 deletions
build-aux/tidy-tests
with
13 additions
and
3 deletions
.gitlab-ci.yml
0 → 100644
+
13
−
0
View file @
25dd18b8
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
This diff is collapsed.
Click to expand it.
build-aux/tidy-tests
+
0
−
3
View file @
25dd18b8
#!/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:]]*$//'
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment