Skip to content

Commit

Permalink
Update azure-pipelines.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
napetrov committed Apr 9, 2021
1 parent 2f70b99 commit 8a1d8cb
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,24 @@
trigger:
- master

pool:
vmImage: ubuntu-latest
jobs:
- job: Linux
pool:
vmImage: ubuntu-latest
strategy:
matrix:
lnx32e:
platform.type : 'lnx32e'
steps:
- script: echo ${$(platform.type):3} ; echo ""; echo $(platform.type)
- script: lscpu
displayName: 'Redundant action. Show info about Azure machine.'

steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- script: gcc -v; sudo apt-get update && sudo apt-get install gcc-multilib g++-multilib; gcc -v
displayName: 'show gcc version'

- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'
- script: mkdir build; cd build; cmake .. ; cmake --build .
displayName: 'Build'

- script: cd build; ctest
displayName: 'Run testing'

0 comments on commit 8a1d8cb

Please # to comment.