Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
research-project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
s1829602
research-project
Merge requests
!1
Add Gitlab-CI for testing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Add Gitlab-CI for testing
gitlab-ci
into
master
Overview
0
Commits
6
Pipelines
8
Changes
1
Open
s1829602
requested to merge
gitlab-ci
into
master
4 years ago
Overview
0
Commits
6
Pipelines
8
Changes
1
Expand
0
0
Merge request reports
Compare
version 6
version 6
11c4516d
4 years ago
version 5
06c552f1
4 years ago
version 4
dd04c209
4 years ago
version 3
149ea9c5
4 years ago
version 2
524b3847
4 years ago
version 1
37b298a8
4 years ago
master (base)
and
latest version
latest version
e36a471f
6 commits,
4 years ago
version 6
11c4516d
5 commits,
4 years ago
version 5
06c552f1
4 commits,
4 years ago
version 4
dd04c209
3 commits,
4 years ago
version 3
149ea9c5
2 commits,
4 years ago
version 2
524b3847
2 commits,
4 years ago
version 1
37b298a8
1 commit,
4 years ago
Show latest version
1 file
+
2
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
25
−
0
Options
image
:
"
rust:alpine"
services
:
-
mysql:latest
stages
:
-
build
-
test
variables
:
MYSQL_DATABASE
:
test
MYSQL_ROOT_PASSWORD
:
test_database
DATABASE_URL
:
mysql://root:$MYSQL_ROOT_PASSWORD@mysql/$MYSQL_DATABASE
build
:
stage
:
build
script
:
-
apk add zeromq
test:cargo
:
stage
:
test
script
:
-
rustc --version && cargo --version
-
cargo test --all
-
cargo run -- iff
\ No newline at end of file
Loading