Skip to content

Commit

Permalink
ci,azure-pipelines: add names for the steps in the job
Browse files Browse the repository at this point in the history
Otherwise the string that shows up is just 'CmdLine'.
Since we've ported the old scripts, those had 3 stages (in Travis-CI):
1. Install dependencies
2. Run the Build
3. Deploy the artifacts

Signed-off-by: Alexandru Ardelean <[email protected]>
  • Loading branch information
commodo committed Dec 10, 2020
1 parent 4e152a9 commit a7cc0ce
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
fetchDepth: 1
clean: true
- script: ./CI/travis/before_install_linux
displayName: "Install Dependencies"
- script: ./CI/travis/make_linux
displayName: "Build"

- job: centos_8_x86_64
pool:
Expand All @@ -34,7 +36,9 @@ jobs:
fetchDepth: 1
clean: true
- script: ./CI/travis/before_install_linux
displayName: "Install Dependencies"
- script: ./CI/travis/make_linux
displayName: "Build"

- job: ubuntu_16_04_x86_64
pool:
Expand All @@ -44,7 +48,9 @@ jobs:
fetchDepth: 1
clean: true
- script: ./CI/travis/before_install_linux
displayName: "Install Dependencies"
- script: ./CI/travis/make_linux
displayName: "Build"

- job: ubuntu_18_04_x86_64
pool:
Expand All @@ -54,7 +60,9 @@ jobs:
fetchDepth: 1
clean: true
- script: ./CI/travis/before_install_linux
displayName: "Install Dependencies"
- script: ./CI/travis/make_linux
displayName: "Build"

- job: ubuntu_20_04_x86_64
pool:
Expand All @@ -64,7 +72,9 @@ jobs:
fetchDepth: 1
clean: true
- script: ./CI/travis/before_install_linux
displayName: "Install Dependencies"
- script: ./CI/travis/make_linux
displayName: "Build"

- job: macos_10_14
pool:
Expand All @@ -74,7 +84,9 @@ jobs:
fetchDepth: 1
clean: true
- script: ./CI/travis/before_install_darwin
displayName: "Install Dependencies"
- script: ./CI/travis/make_darwin
displayName: "Build"

- job: macos_10_15
pool:
Expand All @@ -84,7 +96,9 @@ jobs:
fetchDepth: 1
clean: true
- script: ./CI/travis/before_install_darwin
displayName: "Install Dependencies"
- script: ./CI/travis/make_darwin
displayName: "Build"

# FIXME: uncomment after this is resolved:
# https://github.com/actions/virtual-environments/issues/2072
Expand All @@ -99,4 +113,6 @@ jobs:
# fetchDepth: 1
# clean: true
# - script: ./CI/travis/before_install_darwin
# displayName: "Install Dependencies"
# - script: ./CI/travis/make_darwin
# displayName: "Build"

0 comments on commit a7cc0ce

Please sign in to comment.