Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fermat-primality-test
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
winfo-fse-ss22
fermat-primality-test
Compare revisions
8fb411fd49a324a549c5f72674b78211ef0557cf to 1c54afdb779c91271da6dd1944c0b54f12c12222
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
winfo-fse-ss22/fermat-primality-test
Select target project
No results found
1c54afdb779c91271da6dd1944c0b54f12c12222
Select Git revision
Branches
develop
main
Swap
Target
winfo-fse-ss22/fermat-primality-test
Select target project
winfo-fse-ss22/fermat-primality-test
1 result
8fb411fd49a324a549c5f72674b78211ef0557cf
Select Git revision
Branches
develop
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Added test pipeline
· 85fce3c8
Jannik Bendfeld
authored
2 years ago
85fce3c8
Added pipeline configuration
· 1c54afdb
Jannik Bendfeld
authored
2 years ago
1c54afdb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
.gitlab-ci.yml
+20
-0
20 additions, 0 deletions
.gitlab-ci.yml
with
21 additions
and
0 deletions
.gitignore
View file @
1c54afdb
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
# Test binary, built with `go test -c`
# Test binary, built with `go test -c`
*.test
*.test
.testCoverage.txt
# Output of the go coverage tool, specifically when used with LiteIDE
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
*.out
...
...
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
0 → 100644
View file @
1c54afdb
image
:
golang:1.12.6
variables
:
REPO
:
git.fh-muenster.de
GROUP
:
winfo-fse-ss22
PROJECT
:
fermat-primality-test
stages
:
-
test
before_script
:
-
mkdir -p $GOPATH/src/$REPO/$GROUP $GOPATH/src/_/builds
-
cp -r $CI_PROJECT_DIR $GOPATH/src/$REPO/$GROUP/$PROJECT
-
ln -s $GOPATH/src/$REPO/$GROUP $GOPATH/src/_/builds/$GROUP
-
go get -v -d ./...
unit_tests
:
stage
:
test
script
:
-
go test -v ./... -coverprofile .testCoverage.txt
\ No newline at end of file
This diff is collapsed.
Click to expand it.