Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hysop
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
particle_methods
hysop
Commits
53a58fad
Commit
53a58fad
authored
5 years ago
by
Jean-Baptiste Keck
Browse files
Options
Downloads
Patches
Plain Diff
fix build folder for clang
parent
c6bda756
No related branches found
No related tags found
1 merge request
!16
MPI operators
Pipeline
#24973
canceled
5 years ago
Stage: env
Stage: configure
Stage: build
Stage: install
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
ci/scripts/build.sh
+6
-1
6 additions, 1 deletion
ci/scripts/build.sh
with
7 additions
and
2 deletions
.gitlab-ci.yml
+
1
−
1
View file @
53a58fad
...
...
@@ -18,7 +18,7 @@ config:bionic:
stage
:
configure
script
:
-
"
bash
ci/scripts/config.sh
$CI_PROJECT_DIR/build/gcc-8
$CI_PROJECT_DIR/install/gcc-8
gcc-8
g++-8
gfortran-8"
-
"
bash
ci/scripts/config.sh
$CI_PROJECT_DIR/build/clang-
6
$CI_PROJECT_DIR/install/clang-8
clang-8
clang++-8
gfortran-8"
-
"
bash
ci/scripts/config.sh
$CI_PROJECT_DIR/build/clang-
8
$CI_PROJECT_DIR/install/clang-8
clang-8
clang++-8
gfortran-8"
dependencies
:
-
env:bionic
artifacts
:
...
...
This diff is collapsed.
Click to expand it.
ci/scripts/build.sh
+
6
−
1
View file @
53a58fad
...
...
@@ -6,8 +6,13 @@ if [ $# -ne 4 ]; then
exit
1
fi
BUILD_FOLDER
=
"
$1
"
mkdir
-p
$BUILD_FOLDER
if
[
!
-d
"
$BUILD_FOLDER
"
]
;
then
echo
"Folder
$1
has not been generated by previous step."
exit
1
fi
cd
$BUILD_FOLDER
if
[
!
-f
Makefile
]
;
then
echo
"The makefile has not been generated."
...
...
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