Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Refinedrust Dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lennard Gäher
Refinedrust Dev
Commits
22a70bbf
Verified
Commit
22a70bbf
authored
11 months ago
by
Vincent Lafeychine
Browse files
Options
Downloads
Patches
Plain Diff
feat(ci): Add 'cargo test' job
parent
a228af60
No related branches found
No related tags found
1 merge request
!39
Update dependencies
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+13
-1
13 additions, 1 deletion
.gitlab-ci.yml
with
13 additions
and
1 deletion
.gitlab-ci.yml
+
13
−
1
View file @
22a70bbf
...
...
@@ -64,24 +64,28 @@ nix-cache:
clippy
:
stage
:
lint
needs
:
[
"
nix-cache"
]
script
:
-
cd rr_frontend
-
nix develop -c cargo clippy --all-targets --all-features --no-deps
fmt
:
stage
:
lint
needs
:
[
"
nix-cache"
]
script
:
-
cd rr_frontend
-
nix develop -c cargo fmt --check
theories
:
stage
:
build
needs
:
[
"
nix-cache"
]
variables
:
NIX_DERIVATION
:
.#theories
extends
:
.build_to_artifacts
frontend
:
stage
:
build
needs
:
[
"
nix-cache"
]
variables
:
NIX_DERIVATION
:
.#frontend
extends
:
.build_to_artifacts
...
...
@@ -93,8 +97,16 @@ stdlib:
NIX_DERIVATION
:
.#stdlib
extends
:
.build_to_artifacts
tests
:
frontend-
tests
:
stage
:
tests
needs
:
[
"
frontend"
]
script
:
-
cd rr_frontend
-
nix develop -c cargo test
case_studies
:
stage
:
tests
needs
:
[
"
stdlib"
]
script
:
-
nix shell -c nix run nixpkgs#gnumake -- setup-nix
-
nix shell -c nix run nixpkgs#gnumake -- generate_stdlib
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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