Skip to content

Commit

Permalink
Update pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
octref committed Mar 4, 2020
1 parent f27598c commit 4e1cc6a
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,40 +56,39 @@ steps:
displayName: Compile

- bash: |
if [ $AGENT_OS == "Linux" ]; then
set -e
/usr/bin/Xvfb :10 -ac >> /tmp/Xvfb.out 2>&1 &
disown -ar
echo "Started xvfb"
fi
set -e
/usr/bin/Xvfb :10 -ac >> /tmp/Xvfb.out 2>&1 &
disown -ar
echo "Started xvfb"
condition: eq(variables['Agent.OS'], 'Linux')
displayName: Start xvfb

- bash: yarn test:server
displayName: Run Server Tests
continueOnError: true
condition: always()
env:
DISPLAY: :10

- bash: yarn test:grammar
displayName: Run grammar E2E Tests
continueOnError: true
condition: always()
env:
DISPLAY: :10

- bash: yarn test:lsp
displayName: Run LSP E2E Tests
continueOnError: true
condition: always()
env:
DISPLAY: :10

- bash: yarn test:vue3
displayName: Run vue3 E2E Tests
continueOnError: true
condition: always()
env:
DISPLAY: :10

- bash: yarn test:int
displayName: Run template interpolation E2E Tests
continueOnError: true
condition: always()
env:
DISPLAY: :10

0 comments on commit 4e1cc6a

Please sign in to comment.