Browse Source

Install ccache for CI, even though unused in Azure Pipeline

default_compile_flags
vector-of-bool 5 years ago
parent
commit
9479797b89
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      azure-pipelines.yml

+ 2
- 2
azure-pipelines.yml View File

- script: | - script: |
set -eu set -eu
sudo apt update -y sudo apt update -y
sudo apt install -y python3-minimal g++-8
sudo apt install -y python3-minimal g++-8 ccache
python3 -m pip install pytest pytest-xdist python3 -m pip install pytest pytest-xdist
displayName: Prepare System displayName: Prepare System
- script: python3 -u tools/ci.py -B download --cxx g++-8 -T tools/gcc-8.dds - script: python3 -u tools/ci.py -B download --cxx g++-8 -T tools/gcc-8.dds
pool: pool:
vmImage: macOS-10.14 vmImage: macOS-10.14
steps: steps:
- script: brew install gcc@8
- script: brew install gcc@8 ccache
displayName: Prepare System displayName: Prepare System
- script: | - script: |
set -eu set -eu

Loading…
Cancel
Save