Skip to content

Commit

Permalink
Fixed Pipelines issues
Browse files Browse the repository at this point in the history
  • Loading branch information
CreepPork committed Mar 15, 2019
1 parent 44e7443 commit c4e92f5
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
jobs:
- job: test
- job: Test
pool:
vmImage: 'ubuntu-16.04'

Expand All @@ -17,9 +17,8 @@ jobs:

- script: sphinx-build -nWT -b dummy docs/source/ docs/build/html
displayName: 'Build documentation'

- job: build
dependsOn: test

- job: Package
steps:
- script: |
sudo add-apt-repository ppa:koffeinflummi/armake
Expand All @@ -32,14 +31,10 @@ jobs:
make -j 4
displayName: 'Build with armake'
- job: package
dependsOn: build
steps:
- script: make release
displayName: 'Package Achilles'

- job: deploy
dependsOn: package
- job: Deploy
dependsOn:
- Test
- Package
steps:
- script: "curl -F 'zip=@$(ls *.zip | head -n1)' -F 'accessToken=$(access.token)' https://artifacts.garkaklis.com/api/upload"
- script: "curl -F 'zip=@$(ls *.zip | head -n1)' -F 'accessToken=$(access.token)' $(access.url)"
displayName: 'Upload files'

0 comments on commit c4e92f5

Please sign in to comment.