Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gitlab-ci
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
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
Clea OS
infrastructure
gitlab-ci
Commits
bcfabeef
Commit
bcfabeef
authored
3 years ago
by
Felix Gerking
Browse files
Options
Downloads
Patches
Plain Diff
manifest-CI: Fix conditions for alphaplan_fwr script call
parent
a9d0655c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
manifest-build.yml
+6
-2
6 additions, 2 deletions
manifest-build.yml
with
6 additions
and
2 deletions
manifest-build.yml
+
6
−
2
View file @
bcfabeef
...
@@ -152,13 +152,17 @@ variables:
...
@@ -152,13 +152,17 @@ variables:
# Generate AlphaPlan FWR articles if release tag is set
# Generate AlphaPlan FWR articles if release tag is set
apscript=".gitlab-ci/alphaplan_fwr.py"
apscript=".gitlab-ci/alphaplan_fwr.py"
[ ! -x "${apscript}" ] && script=".repo/manifests/${apscript}"
[ ! -x "${apscript}" ] && echo "Failed to find alphaplan_fwr script"
#if [ -n "$CI_COMMIT_TAG" ] && \
#if [ -n "$CI_COMMIT_TAG" ] && \
echo "CI AP debug mode"
echo "CI AP debug mode"
if true && \
if true && \
[ -d "${ARTIFACTS_IMAGE_PATH}" ] && \
[[ "${CI_PARAM_PACKAGE_FTP}" == "false" ]];then
[[ "${CI_PARAM_PACKAGE_FTP}" == "false" ]];then
# Check if alphaplan fwr script is available
[ ! -x "${apscript}" ] && \
echo "Failed to find alphaplan_fwr script" && \
exit 1
# Call script
${apscript} \
${apscript} \
--images-dir="${ARTIFACTS_IMAGE_PATH}" \
--images-dir="${ARTIFACTS_IMAGE_PATH}" \
--outputdir-local=${outdir} \
--outputdir-local=${outdir} \
...
...
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