Skip to content

Commit

Permalink
stdflag
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed May 14, 2020
1 parent 75106d9 commit 80b063a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .ci/azure_pipelines/template-make-mix-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# C/C++ with GCC
# Build your C/C++ project with GCC using make.
# Add steps that publish test results, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc

# disable config jobs template
parameters:
name: ''
options: ''
vmImage: 'ubuntu 16.04'

jobs:
- job: ${{ parameters.name }}
strategy:
matrix:
# mix config
Mix_NoParameAndType:
MIX_CONFIG: "-DIUTEST_HAS_TYPED_TEST=0 -DIUTEST_HAS_PARAM_TEST=0 -DIUTEST_HAS_TYPED_TEST_P=0 -DIUTEST_HAS_VARIADIC_PRED=0"
PKG_NAME: NoParameAndType
Mix_StrStream:
MIX_CONFIG: "-DIUTEST_HAS_STRINGSTREAM=0 -DIUTEST_HAS_STRSTREAM=1"
ADD_OPT: "STDFLAG=-std=c++03"
PKG_NAME: StrStream
pool:
vmImage: ${{ parameters.vmImage }}
steps:
- template: template-make-test-steps.yml
parameters:
options: ${{ parameters.options }} DEFS+="${MIX_CONFIG}" ${ADD_OPT}
package_name: "${{ parameters.name }}-${NOFEATURE_CONFIG}"

0 comments on commit 80b063a

Please sign in to comment.