Skip to content

Commit 2789bc5

Browse files
Add simple azure pipilene definition
1 parent 0e522a5 commit 2789bc5

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

azure-pipelines.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# C/C++ with GCC
2+
# Build your C/C++ project with GCC using make.
3+
# Add steps that publish test results, save build artifacts, deploy, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc
5+
6+
trigger:
7+
- main
8+
9+
jobs:
10+
- job:
11+
pool:
12+
vmImage: ubuntu-latest
13+
displayName: "build"
14+
timeoutInMinutes: 360
15+
steps:
16+
- task: DockerInstaller@0
17+
inputs:
18+
dockerVersion: '17.09.0-ce'
19+
- task: UsePythonVersion@0
20+
inputs:
21+
versionSpec: '3.10'
22+
addToPath: true
23+
architecture: 'x64'
24+
- task: Bash@3
25+
timeoutInMinutes: 360
26+
inputs:
27+
targetType: 'inline'
28+
script: |
29+
# Write your commands here
30+
31+
make docker
32+
- task: PublishBuildArtifacts@1
33+
inputs:
34+
PathtoPublish: '$(System.DefaultWorkingDirectory)/RELEASE/stretch/arm64/'
35+
ArtifactName: 'dent'
36+
publishLocation: 'Container'

0 commit comments

Comments
 (0)