Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
microservice-autodevopspipelines
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李春生
microservice-autodevopspipelines
Commits
33dbeccb
Commit
33dbeccb
authored
Jan 09, 2019
by
据说甜蜜呢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加方法IsPublishableOf
parent
04cd5a27
Pipeline
#4087
passed with stage
in 15 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
devops/PipeLines/Creation/001_CI.sh
+1
-1
devops/PipeLines/Functions.sh
+8
-0
No files found.
devops/PipeLines/Creation/001_CI.sh
View file @
33dbeccb
...
...
@@ -48,7 +48,7 @@ declare serviceName=""
for
service
in
${
services
}
do
servicePrefix
=(
$(
echo
${
service
}
| awk
'{print $9}'
)
)
isPublishable
=(
$(
grep
-oP
"(?<=
${
servicePrefix
}
Publishable>)[^<]+"
"/tmp/cicd.props"
)
)
IsPublishableOf
${
servicePrefix
}
isPublishable
GetServiceName
"
${
servicePrefix
}
"
serviceName
CI
"
${
servicePrefix
}
"
"./src/
${
servicePrefix
}
/
${
serviceName
}
.csproj"
done
...
...
devops/PipeLines/Functions.sh
View file @
33dbeccb
...
...
@@ -68,4 +68,11 @@ function GetAccessTokenOf()
{
declare
token
=(
$(
grep
-oP
"(?<=
${
Environment
}
AccessToken>)[^<]+"
"devops/deploy.props"
)
)
eval
$1
=
"
${
token
}
"
}
function
IsPublishableOf
()
{
declare
prefix
=
$0
declare
isP
=(
$(
grep
-oP
"(?<=
${
prefix
}
Publishable>)[^<]+"
"/tmp/cicd.props"
)
)
eval
$1
=
isP
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment