Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cis-workflow-gen
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
msc
cis-workflow-gen
Commits
40c8da9d
There was a problem fetching the pipeline stages.
Commit
40c8da9d
authored
3 years ago
by
Recolic K
Browse files
Options
Downloads
Patches
Plain Diff
code shorthand
parent
1c87a03d
No related branches found
No related tags found
No related merge requests found
Pipeline
#862
passed with stage
in 9 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
quick-include.hpp
+3
-1
3 additions, 1 deletion
quick-include.hpp
workflows/wds-go.cc
+2
-3
2 additions, 3 deletions
workflows/wds-go.cc
with
5 additions
and
4 deletions
quick-include.hpp
+
3
−
1
View file @
40c8da9d
...
...
@@ -28,4 +28,6 @@ inline auto &DefaultMetadata(std::string className) {
}
}
#endif
\ No newline at end of file
#define CS(rawCode) (Utility::CSharpExpr {#rawCode} .unescapeThisExprInQuotedCSharpString())
#endif
This diff is collapsed.
Click to expand it.
workflows/wds-go.cc
+
2
−
3
View file @
40c8da9d
...
...
@@ -12,14 +12,13 @@ int main() {
>>
Activity
(
"WaitForCreateVM"
,
"FleetAGC.Activities.QueryAzureVMsActivity"
)
.
addInputSetting
(
"ResourceGroup"
,
"WdsTest"
)
>>
Activity
(
"InstallWdsServices"
,
"FleetAGC.Activities.RemotePSActivity"
)
.
addInputSetting
(
"PublicIP"
,
"
\"
+
GlobalSettings[
\
"
BootstrapWDSPublicIPAddress
\
"
]
+
\"
"
)
.
addInputSetting
(
"PublicIP"
,
CS
(
GlobalSettings
[
"BootstrapWDSPublicIPAddress"
]
)
)
.
addInputSetting
(
"UserNameKey"
,
"DC1AdminUserName"
)
.
addInputSetting
(
"PasswordKey"
,
"DC1AdminPassword"
)
.
addInputSetting
(
"ScriptPath"
,
"Resources/PSScript/WdsGo.ps1"
)
.
addInputSetting
(
"RequiresSAS"
,
"true"
)
.
addInputSetting
(
"ConnectionStringKey"
,
"BootstrapPocStorageAccount"
)
>>
Activity
(
"WaitForWdsInstallFinish"
,
"FleetAGC.Activities.RemotePSActivity"
)
.
addInputSetting
(
"PublicIP"
,
"
\"
+
GlobalSettings[
\
"
BootstrapWDSPublicIPAddress
\
"
]
+
\"
"
)
.
addInputSetting
(
"PublicIP"
,
CS
(
GlobalSettings
[
"BootstrapWDSPublicIPAddress"
]
)
)
.
addInputSetting
(
"UserNameKey"
,
"DC1AdminUserName"
)
.
addInputSetting
(
"PasswordKey"
,
"DC1AdminPassword"
)
.
addInputSetting
(
"RetryTime"
,
"2000"
)
...
...
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