Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
reporting
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
Container registry
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
Archives
reporting
Commits
58fd8ec1
Verified
Commit
58fd8ec1
authored
6 years ago
by
Sébastien Villemot
Browse files
Options
Downloads
Patches
Plain Diff
Use Gitlab CI
parent
5b5eb5ac
No related branches found
No related tags found
No related merge requests found
Pipeline
#379
failed
6 years ago
Stage: test
Changes
6
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
.gitlab-ci.yml
+20
-0
20 additions, 0 deletions
.gitlab-ci.yml
.travis.yml
+0
-28
0 additions, 28 deletions
.travis.yml
Makefile
+2
-2
2 additions, 2 deletions
Makefile
README.md
+0
-2
0 additions, 2 deletions
README.md
success.sh
+0
-4
0 additions, 4 deletions
success.sh
test/runtest.m
+3
-3
3 additions, 3 deletions
test/runtest.m
with
25 additions
and
39 deletions
.gitlab-ci.yml
0 → 100644
+
20
−
0
View file @
58fd8ec1
before_script
:
-
git clone https://git.dynare.org/Dynare/dynare.git
-
git clone https://git.dynare.org/Dynare/dates.git
-
git clone https://git.dynare.org/Dynare/dseries.git
testsuite_matlab
:
stage
:
test
script
:
-
make check-matlab
artifacts
:
paths
:
-
test/report.pdf
testsuite_octave
:
stage
:
test
script
:
-
make check-octave
artifacts
:
paths
:
-
test/report.pdf
This diff is collapsed.
Click to expand it.
.travis.yml
deleted
100644 → 0
+
0
−
28
View file @
5b5eb5ac
language
:
cpp
sudo
:
required
os
:
osx
osx_image
:
xcode7.3
cache
:
ccache
cache
:
directories
:
-
/usr/local
before_install
:
-
wget http://ctan.math.utah.edu/ctan/tex-archive/systems/mac/mactex/BasicTeX.pkg -O "/tmp/BasicTeX.pkg"
-
echo "Installing OS X binary package for MacTeX"
-
sudo installer -pkg "/tmp/BasicTeX.pkg" -target / -dumplog -verbose
-
rm "/tmp/BasicTeX.pkg"
-
export PATH=/usr/texbin:/Library/TeX/texbin/pdflatex:$PATH
-
sudo /Library/TeX/texbin/tlmgr update --self
-
sudo /Library/TeX/texbin/tlmgr install pgfplots adjustbox collectbox datetime fmtcount
-
brew update
-
brew install ccache
-
brew install octave
install
:
-
git clone --depth=1 --recursive --branch=master https://git.dynare.org/Dynare/dynare.git ~/builds/dynare
script
:
-
make check-octave
-
./success.sh
This diff is collapsed.
Click to expand it.
Makefile
+
2
−
2
View file @
58fd8ec1
...
@@ -5,7 +5,7 @@ all: check-octave check-matlab
...
@@ -5,7 +5,7 @@ all: check-octave check-matlab
check-octave
:
check-octave
:
@
cd test
;
\
@
cd test
;
\
$(
OCTAVE
)
--silent
--no-history
runtest.m
$(
OCTAVE
)
--silent
--no-history
runtest.m
&&
[
-f
report.pdf
]
check-matlab
:
check-matlab
:
@$(
MATLAB
)
-nosplash
-nodisplay
-r
"cd test; runtest; quit"
@$(
MATLAB
)
-nosplash
-nodisplay
-r
"cd test; runtest; quit"
&&
[
-f
test
/report.pdf
]
This diff is collapsed.
Click to expand it.
README.md
+
0
−
2
View file @
58fd8ec1

# Dynare Reporting
# Dynare Reporting
Originally designed to provide reporting functionality for
Originally designed to provide reporting functionality for
...
...
This diff is collapsed.
Click to expand it.
success.sh
deleted
100755 → 0
+
0
−
4
View file @
5b5eb5ac
#!/bin/bash
if
[
!
-f
test
/report.pdf
]
;
then
exit
1
;
fi
This diff is collapsed.
Click to expand it.
test/runtest.m
+
3
−
3
View file @
58fd8ec1
...
@@ -15,9 +15,9 @@
...
@@ -15,9 +15,9 @@
% You should have received a copy of the GNU General Public License
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
addpath
(
'
~/builds
/dynare/matlab/utilities/general'
)
addpath
(
'
..
/dynare/matlab/utilities/general'
)
addpath
(
'
~/builds/dynare/matlab/modules
/dates/src'
)
addpath
(
'
..
/dates/src'
)
addpath
(
'
~/builds/dynare/matlab/modules
/dseries/src'
)
addpath
(
'
..
/dseries/src'
)
addpath
(
'../src'
)
addpath
(
'../src'
)
initialize_dates_toolbox
;
initialize_dates_toolbox
;
...
...
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