Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
rust
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
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
orestis.malaspin
rust
Commits
54308604
There was a problem fetching the pipeline summary.
Commit
54308604
authored
6 years ago
by
orestis.malaspin
Browse files
Options
Downloads
Patches
Plain Diff
added task
parent
25c24bd3
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.vscode/tasks.json
+34
-0
34 additions, 0 deletions
.vscode/tasks.json
with
34 additions
and
0 deletions
.vscode/tasks.json
0 → 100644
+
34
−
0
View file @
54308604
{
//
See
https://go.microsoft.com/fwlink/?LinkId=
733558
//
for
the
documentation
about
the
tasks.json
format
"version"
:
"2.0.0"
,
"command"
:
"make"
,
"isShellCommand"
:
true
,
"tasks"
:
[
{
"taskName"
:
"Makefile"
,
//
Make
this
the
default
build
command.
"isBuildCommand"
:
true
,
//
Show
the
output
window
only
if
unrecognized
errors
occur.
"showOutput"
:
"always"
,
//
Pass
'all'
as
the
build
target
"args"
:
[
"all"
],
//
Use
the
standard
less
compilation
problem
matcher.
"problemMatcher"
:
{
"owner"
:
"cpp"
,
"fileLocation"
:
[
"relative"
,
"${workspaceRoot}"
],
"pattern"
:
{
"regexp"
:
"^(.*):(
\\
d+):(
\\
d+):
\\
s+(warning|error):
\\
s+(.*)$"
,
"file"
:
1
,
"line"
:
2
,
"column"
:
3
,
"severity"
:
4
,
"message"
:
5
}
}
]
}
\ No newline at end of file
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