Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rpn_collab
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
QSUE Team B
rpn_collab
Commits
f7c05b10
Commit
f7c05b10
authored
5 years ago
by
Padok
Browse files
Options
Downloads
Patches
Plain Diff
gitlab-ci
parent
5920b54e
No related branches found
Branches containing commit
No related tags found
1 merge request
!26
Ci fixes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-1
1 addition, 1 deletion
.gitignore
.gitlab-ci.yml
+43
-0
43 additions, 0 deletions
.gitlab-ci.yml
with
44 additions
and
1 deletion
.gitignore
+
1
−
1
View file @
f7c05b10
*.o
out/
result
result
*
calc
fuzz_calc
unit_test
...
...
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
43
−
0
View file @
f7c05b10
image
:
nixos/nix:latest
stages
:
-
build
-
testing
before_script
:
-
echo $CI_PROJECT_DIR
build:calc
:
stage
:
build
script
:
-
nix-build release.nix -A rpnCalc
artifacts
:
paths
:
-
"
calc"
build:fuzz_calc
:
stage
:
build
script
:
-
nix-build release.nix -A rpnCalcFuzz
artifacts
:
expire_in
:
30 minutes
paths
:
-
"
fuzz_calc"
testing:run_test
:
stage
:
testing
script
:
-
nix-build release.nix -A rpnCalcTests
testing:fuzz
:
stage
:
testing
allow_failure
:
true
dependencies
:
-
build:fuzz_calc
script
:
-
echo core > sudo tee /proc/sys/kernel/core_pattern
-
nix-build release.nix -A rpnCalcFuzzLog
-
if [ -z "$(find out/crashes -name 'id*')" ]; then exit 0; else exit 1; fi
artifacts
:
paths
:
-
"
out/crashes/*"
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