Skip to content

Commit

Permalink
more variable churn
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Feb 7, 2020
1 parent d73805f commit 92881a7
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions scripts/azp/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ jobs:
options: --privileged
timeoutInMinutes: 60
steps:
- script: |
echo "current directory:" `pwd`
cd doc
make doxygen
displayName: 'Make Doxygen'
- script: |
cd doc
make html
Expand All @@ -25,11 +20,10 @@ jobs:
# make latexpdf
#displayName: 'Make PDF'
- script: |
# export AWS_ACCESS_KEY_ID=variables['aws-credentials.AWS_ACCESS_KEY_ID']
#export AWS_SECRET_ACCESS_KEY=variables['aws-credentials.AWS_SECRET_ACCESS_KEY']
export AWS_ACCESS_KEY_ID="$(aws-credentials.AWS_ACCESS_KEY_ID)"
export AWS_SECRET_ACCESS_KEY="$(aws-credentials.AWS_SECRET_ACCESS_KEY)"
export AWS_ACCESS_KEY_ID="variables['aws-credentials.AWS_ACCESS_KEY_ID']"
export AWS_SECRET_ACCESS_KEY="variables['aws-credentials.AWS_SECRET_ACCESS_KEY']"
cd doc/build
aws s3 sync . "s3://pdal/docs/$(Build.SourceVersion)/" --acl public-read
displayName: 'Upload https://github.com/OSGeo/gdal/commit/$(Build.SourceVersion) to https://pdal.s3.amazonaws.com/docs/$(Build.SourceVersion)/html/'
aws s3 sync html "s3://pdal/docs/$(Build.SourceVersion)/html/" --acl public-read
aws s3 sync latexpdf/PDAL.pdf "s3://pdal/docs/$(Build.SourceVersion)/html/" --acl public-read
displayName: 'Upload https://pdal.s3.amazonaws.com/docs/$(Build.SourceVersion)/html/'

0 comments on commit 92881a7

Please sign in to comment.