-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}" |