Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
BOXMOX
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MBEES
BOXMOX
Commits
895f5f2d
Commit
895f5f2d
authored
3 years ago
by
Christoph Knote
Browse files
Options
Downloads
Patches
Plain Diff
Updated CI scripts
parent
171f24cf
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
.gitlab-ci.yml
+10
-48
10 additions, 48 deletions
.gitlab-ci.yml
with
12 additions
and
48 deletions
.gitignore
+
2
−
0
View file @
895f5f2d
bin/
share
build
src/kpp
boxmox*.tar.gz
doc/boxmox_README.pdf
...
...
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
10
−
48
View file @
895f5f2d
create_patch
:
image
:
ubuntu:rolling
script
:
-
bash create_BOXMOX_patch.bash
tags
:
-
ehs_vm
boxmox_latest
:
build
:
image
:
ubuntu:rolling
before_script
:
-
DEBIAN_FRONTEND=noninteractive apt-get -qq update
-
DEBIAN_FRONTEND=noninteractive apt-get -qq install wget patch make gcc gfortran flex bison texlive
script
:
-
cp -r boxmox boxmox_latest
-
bash prep_BOXMOX_src_directory.bash boxmox_latest latest
-
tar cvzf boxmox_latest.tar.gz boxmox_latest
tags
:
-
ehs_vm
-
aclocal
-
autoconf
-
automake -a -c
-
./configure
-
make
-
make dist-gzip
artifacts
:
paths
:
-
boxmox_latest.tar.gz
.compile
:
script
:
-
bash install_BOXMOX.bash COMPILE_ONLY
-
export KPP_HOME=$(pwd)/boxmox
-
export PATH=$KPP_HOME/bin:$KPP_HOME/boxmox/bin:$PATH
-
cd boxmox/models
-
prepare_BOXMOX_mechanism MOZART_4
-
new_BOXMOX_experiment_from_example chamber_experiment
-
for mechpath in *def;
do
mech=${mechpath/.def/};
echo ${mech};
if [ "${mech}" != "CB05TUCl_EPA" ] && [ "${mech}" != "MCMv3_3" ];
then
prepare_BOXMOX_mechanism -f ${mech};
new_BOXMOX_experiment ${mech} chamber_experiment_${mech};
cp chamber_experiment/*csv chamber_experiment_${mech}/;
cd chamber_experiment_${mech};
./${mech}.exe;
cd ..;
fi;
done
tags
:
-
ehs_vm
compile_ubuntu_latest
:
image
:
ubuntu:rolling
extends
:
.compile
before_script
:
-
DEBIAN_FRONTEND=noninteractive apt-get -qq update
-
DEBIAN_FRONTEND=noninteractive apt-get -qq install wget patch make gcc gfortran flex bison texlive
tags
:
-
ehs_vm
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