2020-05-09 02:07:19 +00:00
|
|
|
# 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
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
- master
|
|
|
|
- development
|
|
|
|
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- script: |
|
2020-05-15 20:06:18 +00:00
|
|
|
./pipelines/linux_build.sh
|
2020-05-09 02:07:19 +00:00
|
|
|
displayName: 'make'
|