summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-03-30 17:13:40 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-03-30 17:13:40 +0200
commit655fe848ad4e7a0a4ae4737e58a5bdc2375bc181 (patch)
tree2921c4b9e222021b081c6c9caf96d8a52d4e3c53
parent0ac6bed3985f3a9f2e0bccb9ada8b89646c79c42 (diff)
downloadATCD-655fe848ad4e7a0a4ae4737e58a5bdc2375bc181.tar.gz
Also add default.features creation
* .github/workflows/ccpp.yml: * azure-pipelines.yml:
-rw-r--r--.github/workflows/ccpp.yml7
-rw-r--r--azure-pipelines.yml1
2 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml
index 47727d831a1..ab80c0a7ae2 100644
--- a/.github/workflows/ccpp.yml
+++ b/.github/workflows/ccpp.yml
@@ -70,6 +70,13 @@ jobs:
'c++11=1' >> ${env:ACE_ROOT}/include/makeinclude/platform_macros.GNU
'include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU' >> ${env:ACE_ROOT}/include/makeinclude/platform_macros.GNU
shell: pwsh
+ - name: create $ACE_ROOT/bin/MakeProjectCreator/config/default.features
+ run: |
+ 'ipv6=1' > ${env:ACE_ROOT}/bin/MakeProjectCreator/config/default.features
+ 'xerces3=1' >> ${env:ACE_ROOT}/bin/MakeProjectCreator/config/default.features
+ 'ssl=1' >> ${env:ACE_ROOT}/bin/MakeProjectCreator/config/default.features
+ 'versioned_namespace=1' >> $(ACE_ROOT)/bin/MakeProjectCreator/config/default.features
+ shell: pwsh
- name: Run mwc.pl on $(TAO_ROOT)/TAO_ACE.mwc
run: |
perl ${env:ACE_ROOT}/bin/mwc.pl -type gnuace ${env:TAO_ROOT}/TAO_ACE.mwc -workers 4
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 9c69ba9a7ab..ff4f858b1be 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -226,6 +226,7 @@ jobs:
- powershell: |
'xerces3=1' > $(ACE_ROOT)/bin/MakeProjectCreator/config/default.features
'ssl=1' >> $(ACE_ROOT)/bin/MakeProjectCreator/config/default.features
+ 'ipv6=1' >> $(ACE_ROOT)/bin/MakeProjectCreator/config/default.features
'versioned_namespace=1' >> $(ACE_ROOT)/bin/MakeProjectCreator/config/default.features
displayName: Create default.features file
- powershell: |