summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-10-31 12:17:51 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-10-31 12:17:51 +0100
commitf7e48fe88d9ddbd26cbe1f2b49d49e8528787dec (patch)
tree210624b80cbd66632fb69cdee12d4fa2e3c516fd
parent5f6d5716b86e21fe34b4878dd4c12bcf59ac8734 (diff)
downloadATCD-f7e48fe88d9ddbd26cbe1f2b49d49e8528787dec.tar.gz
Use gcc8 as default on Linux
* azure-pipelines.yml:
-rw-r--r--azure-pipelines.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 270075fc9c1..29ffb9639f3 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -100,8 +100,14 @@ jobs:
timeoutInMinutes: 90
pool:
vmImage: ubuntu-16.04
+ variables:
+ CC: gcc-8
+ CXX: g++-8
steps:
- - script: sudo apt-get --yes update && sudo apt-get --yes install libxerces-c-dev libssl-dev
+ - script: |
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
+ sudo apt-get --yes update
+ sudo apt-get --yes install libxerces-c-dev libssl-dev g++-8
displayName: install system package dependencies
- powershell: |
'#include "ace/config-linux.h"' > $(ACE_ROOT)/ace/config.h