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
d9e34e59
There was an error fetching the commit references. Please try again later.
Commit
d9e34e59
authored
4 years ago
by
Bensong Liu
Browse files
Options
Downloads
Patches
Plain Diff
doc
parent
c6a072c9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
workflows/E2EPOC-BuildPortal.cc
+0
-1
0 additions, 1 deletion
workflows/E2EPOC-BuildPortal.cc
workflows/E2EPOC-IC3TeamsVirtualWorkflow.cc
+30
-0
30 additions, 0 deletions
workflows/E2EPOC-IC3TeamsVirtualWorkflow.cc
with
30 additions
and
1 deletion
workflows/E2EPOC-BuildPortal.cc
+
0
−
1
View file @
d9e34e59
#include
<cis-workflow-gen/quick-include.hpp>
int
main
()
{
#define DEFINE_ACTIVITY(name) \
Activity name(#name, "FleetAGC.Activities.DelayActivity", "PortalAdminCenterUseageReports." #name)
...
...
This diff is collapsed.
Click to expand it.
workflows/E2EPOC-IC3TeamsVirtualWorkflow.cc
0 → 100644
+
30
−
0
View file @
d9e34e59
#include
<cis-workflow-gen/quick-include.hpp>
int
main
()
{
#define DEFINE_ACTIVITY(name, entityName) \
Activity name (#name, "FleetAGC.Activities.DelayActivity", entityName); \
name.addInputSetting("Message", "Doing " #name);
DEFINE_ACTIVITY
(
SCS
,
"PreRteg.InitiateBareMetalComplete"
)
DEFINE_ACTIVITY
(
SearchAnalytics
,
""
)
DEFINE_ACTIVITY
(
SearchFarms
,
""
)
DEFINE_ACTIVITY
(
ClassisSearchUX
,
""
)
DEFINE_ACTIVITY
(
ModernSearch
,
""
)
DEFINE_ACTIVITY
(
Loki
,
"PreRteg.InitiateBareMetalComplete"
)
DEFINE_ACTIVITY
(
Yggdrasil
,
""
)
DEFINE_ACTIVITY
(
OfficeGraph
,
""
)
DEFINE_ACTIVITY
(
IC3Tooling
,
"PreRteg.InitiateBareMetalComplete"
)
DEFINE_ACTIVITY
(
MonitoringSetup
,
""
)
DEFINE_ACTIVITY
(
MicroServices
,
""
)
DEFINE_ACTIVITY
(
DevelopmentValidation
,
""
)
DEFINE_ACTIVITY
(
IntegrationTesting
,
""
)
DEFINE_ACTIVITY
(
TSConfigAndInterop
,
"PreRteg.InitiateBareMetalComplete"
)
auto
block1
=
SCS
>>
(
SearchAnalytics
|
(
SearchFarms
>>
(
ClassisSearchUX
|
ModernSearch
)));
auto
block3
=
Loki
>>
Yggdrasil
>>
OfficeGraph
;
auto
block4
=
IC3Tooling
>>
(
MonitoringSetup
|
(
MicroServices
>>
DevelopmentValidation
>>
IntegrationTesting
));
auto
completeFlow
=
block1
|
TSConfigAndInterop
|
block3
|
block4
;
println
(
to_file
(
"IC3TeamsVirtualWorkflow.xaml"
),
completeFlow
.
generateXaml
(
"FleetAGC.Workflows.IC3TeamsVirtualWorkflow"
));
}
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