Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
catalyst_adapter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
ICON ComIn
plugins
catalyst_adapter
Commits
83b87c74
Commit
83b87c74
authored
7 months ago
by
Nils-Arne Dreier
Browse files
Options
Downloads
Patches
Plain Diff
fix(pipelines): set correct build driectory for downloading replay_data
parent
ceaf98e8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
pipelines/gridwriter/CMakeLists.txt
+1
-1
1 addition, 1 deletion
pipelines/gridwriter/CMakeLists.txt
pipelines/live/CMakeLists.txt
+1
-1
1 addition, 1 deletion
pipelines/live/CMakeLists.txt
with
3 additions
and
3 deletions
CMakeLists.txt
+
1
−
1
View file @
83b87c74
cmake_minimum_required
(
VERSION 3.
17
)
cmake_minimum_required
(
VERSION 3.
20
)
project
(
catalyst_adapter
VERSION 0.1.0
LANGUAGES C CXX
...
...
This diff is collapsed.
Click to expand it.
pipelines/gridwriter/CMakeLists.txt
+
1
−
1
View file @
83b87c74
...
...
@@ -12,7 +12,7 @@ file(GENERATE OUTPUT master.nml
"
)
file
(
GENERATE OUTPUT run.sh
CONTENT
"#!/bin/sh
cmake --build
.
--target
\"
download_replay_data_
${
REPLAY_DATA_NAME
}
\"
cmake --build
${
PROJECT_BINARY_DIR
}
--target
\"
download_replay_data_
${
REPLAY_DATA_NAME
}
\"
cd
${
CMAKE_CURRENT_BINARY_DIR
}
set -e
${
MPIEXEC_EXECUTABLE
}
${
MPIEXEC_NUMPROC_FLAG
}
3
\"
$<TARGET_FILE:ComIn::comin_replay>
\"
\"
${
REPLAY_DATA_PATH
}
/
\"
...
...
This diff is collapsed.
Click to expand it.
pipelines/live/CMakeLists.txt
+
1
−
1
View file @
83b87c74
...
...
@@ -12,7 +12,7 @@ file(GENERATE OUTPUT master.nml
"
)
file
(
GENERATE OUTPUT run.sh
CONTENT
"#!/bin/sh
cmake --build
.
--target
\"
download_replay_data_
${
REPLAY_DATA_NAME
}
\"
cmake --build
${
PROJECT_BINARY_DIR
}
--target
\"
download_replay_data_
${
REPLAY_DATA_NAME
}
\"
cd
${
CMAKE_CURRENT_BINARY_DIR
}
set -e
${
MPIEXEC_EXECUTABLE
}
${
MPIEXEC_NUMPROC_FLAG
}
3
\"
$<TARGET_FILE:ComIn::comin_replay>
\"
\"
${
REPLAY_DATA_PATH
}
/
\"
...
...
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