Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
waves
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
Aerospace and Mechanical Engineering
waves
Merge requests
!46
Msys build
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Msys build
adrien
into
master
Overview
5
Commits
10
Pipelines
2
Changes
516
All threads resolved!
Hide all comments
Merged
Adrien Crovato
requested to merge
adrien
into
master
5 years ago
Overview
5
Commits
10
Pipelines
2
Changes
1
All threads resolved!
Hide all comments
Expand
Context
This merge request brings a new build on Windows using MSYS2.
Major changes
MSYS2 build is now supported for Windows platforms
Minor changes
Apache 2.0 license has been added to each file (more or less)
[Flow] Transpiration boundary condition and dummy coupler have been added to prepare Amaury's work on viscous/inviscid coupling
Tests
Passed on ubuntu 18.04, debian (gaston)
Edited
5 years ago
by
Adrien Crovato
0
0
Merge request reports
Compare
version 1
version 2
86f7878f
5 years ago
version 1
97278a76
5 years ago
master (base)
and
version 2
latest version
19f52b2c
10 commits,
5 years ago
version 2
86f7878f
9 commits,
5 years ago
version 1
97278a76
8 commits,
5 years ago
Show latest version
1 file
+
59
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
59
−
0
Options
# gitlab-ci file for waves
default
:
image
:
rboman/waves
stages
:
-
build
-
test
full_build
:
stage
:
build
script
:
-
source /opt/intel/mkl/bin/mklvars.sh intel64
-
source /opt/intel/tbb/bin/tbbvars.sh intel64
-
printenv | sort
-
rm -rf build workspace
-
mkdir build
-
cd build
-
cmake -Wno-dev ..
-
make -j
4
artifacts
:
paths
:
-
build/
expire_in
:
1 hour
build_no_tlnos
:
stage
:
build
script
:
-
source /opt/intel/mkl/bin/mklvars.sh intel64
-
source /opt/intel/tbb/bin/tbbvars.sh intel64
-
printenv | sort
-
rm -rf build workspace
-
mkdir build
-
cd build
-
cmake -Wno-dev -C ../CMake/disable-trilinos.cmake ..
-
make -j
4
doxygen
:
stage
:
test
script
:
-
cd build
-
make dox
artifacts
:
paths
:
-
build/doxygen/
expire_in
:
1 day
ctest
:
stage
:
test
script
:
-
source /opt/intel/mkl/bin/mklvars.sh intel64
-
source /opt/intel/tbb/bin/tbbvars.sh intel64
-
cd build
-
ctest -j
4
#--verbose
#timeout: 10 hours # will be available in 12.3
Loading