Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MicroCART
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
Distributed Autonomous Networked Control Lab
MicroCART
Commits
cfee03e0
Commit
cfee03e0
authored
7 years ago
by
Peter Thedens
Browse files
Options
Downloads
Patches
Plain Diff
move ci scripts into ci/ folder
parent
b9570b40
No related branches found
No related tags found
1 merge request
!20
Updates to testing infrastructure
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
ci/ci-build.sh
+1
-1
1 addition, 1 deletion
ci/ci-build.sh
ci/ci-test.sh
+1
-1
1 addition, 1 deletion
ci/ci-test.sh
with
4 additions
and
4 deletions
.gitlab-ci.yml
+
2
−
2
View file @
cfee03e0
...
...
@@ -11,10 +11,10 @@ stages:
build_job
:
stage
:
build
script
:
-
bash ci-build.sh
-
bash
ci/
ci-build.sh
# run tests using the binary built before
test_job
:
stage
:
test
script
:
-
bash ci-test.sh
-
bash
ci/
ci-test.sh
This diff is collapsed.
Click to expand it.
ci-build.sh
→
ci/
ci-build.sh
+
1
−
1
View file @
cfee03e0
...
...
@@ -3,7 +3,7 @@
set
-e
# Quad Libraries and Boot image
(
cd
quad
&&
make deep-clean
&&
make
)
(
cd
../
quad
&&
make deep-clean
&&
make
)
# Ground station
git submodule update
--init
--recursive
...
...
This diff is collapsed.
Click to expand it.
ci-test.sh
→
ci/
ci-test.sh
+
1
−
1
View file @
cfee03e0
...
...
@@ -3,4 +3,4 @@
set
-e
# Quad
(
cd
quad
&&
make
test
)
(
cd
../
quad
&&
make
test
)
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