Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
Update azure-pipelines.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jan 9, 2021
1 parent 7773e52 commit c8059f2
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions azure-pipelines.yml
Expand Up @@ -12,7 +12,9 @@ jobs:
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: git submodule update --recursive
- script: |
git submodule sync --recursive
git submodule update --init --recursive
displayName: 'submodules'
- script: ls -R -l *
displayName: 'ls'
Expand Down Expand Up @@ -79,10 +81,10 @@ jobs:
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: git submodule update --recursive
- script: |
git submodule sync --recursive
git submodule update --init --recursive
displayName: 'submodules'
- script: ls -R -l *
displayName: 'ls'
- script: python -m pip install --upgrade pip setuptools wheel wcwidth backcall
displayName: 'Install tools'
- script: pip install -r requirements.txt
Expand Down Expand Up @@ -118,7 +120,9 @@ jobs:
architecture: 'x64'
- script: gcc --version
displayName: 'gcc version'
- script: git submodule update --recursive
- script: |
git submodule sync --recursive
git submodule update --init --recursive
displayName: 'submodules'
- script: ls -R -l *
displayName: 'ls'
Expand Down

0 comments on commit c8059f2

Please sign in to comment.