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

Commit

Permalink
CI with Azure Pipelines (#15403)
Browse files Browse the repository at this point in the history
  • Loading branch information
ariya committed Dec 29, 2019
1 parent 1ef8776 commit b9211d7
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .circleci/config.yml

This file was deleted.

40 changes: 40 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
jobs:

- job: 'amd64_linux_gcc'
pool:
vmImage: 'ubuntu-18.04'
steps:
- script: sudo apt-get -y -qq update
displayName: 'apt-get update'
- script: sudo apt install -y g++ cmake qt5-default libqt5webkit5-dev python
displayName: 'Install requirements'
- script: g++ --version && cmake --version && qmake --version && python --version
displayName: 'Display tools version'
- script: ./configure
displayName: 'Run configure script'
- script: make
displayName: 'make'
- script: file ./bin/phantomjs && ./bin/phantomjs --version
displayName: 'Verify executable'
- script: make check
displayName: 'Run the tests'

- job: 'amd64_linux_clang'
pool:
vmImage: 'ubuntu-18.04'
steps:
- script: sudo apt-get -y -qq update
displayName: 'apt-get update'
- script: sudo apt install -y clang cmake qt5-default libqt5webkit5-dev python
displayName: 'Install requirements'
- script: clang++ --version && cmake --version && qmake --version && python --version
displayName: 'Display tools version'
- script: CC=clang CXX=clang++ ./configure
displayName: 'Run configure script'
- script: make
displayName: 'make'
- script: file ./bin/phantomjs && ./bin/phantomjs --version
displayName: 'Verify executable'
- script: make check
displayName: 'Run the tests'

0 comments on commit b9211d7

Please sign in to comment.