Bladeren bron

Use gcc-9 in CI

default_compile_flags
vector-of-bool 5 jaren geleden
bovenliggende
commit
cbebbe1650
2 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. +2
    -2
      azure-pipelines.yml
  2. +1
    -1
      tests/dds.py

+ 2
- 2
azure-pipelines.yml Bestand weergeven

@@ -27,7 +27,7 @@ jobs:
sudo apt install -y python3-minimal g++-8 ccache
python3 -m pip install pytest pytest-xdist
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-9.dds
displayName: Full CI
- publish: _build/dds
artifact: DDS Executable - Linux
@@ -41,7 +41,7 @@ jobs:
- script: |
set -eu
python3 -m pip install pytest pytest-xdist
python3 -u tools/ci.py -B download --cxx g++-8 -T tools/gcc-8.dds
python3 -u tools/ci.py -B download --cxx g++-8 -T tools/gcc-9.dds
displayName: Build and Run Unit Tests
- publish: _build/dds
artifact: DDS Executable - macOS

+ 1
- 1
tests/dds.py Bestand weergeven

@@ -124,7 +124,7 @@ class DDS:
@property
def default_builtin_toolchain(self) -> str:
if os.name == 'posix':
return ':gcc-8'
return ':gcc-9'
elif os.name == 'nt':
return ':msvc'
else:

Laden…
Annuleren
Opslaan