Переглянути джерело

Do a full bootstrap build in CI for the release

default_compile_flags
vector-of-bool 5 роки тому
джерело
коміт
430a34c11f
2 змінених файлів з 4 додано та 5 видалено
  1. +4
    -4
      azure-pipelines.yml
  2. +0
    -1
      tools/ci.py

+ 4
- 4
azure-pipelines.yml Переглянути файл

@@ -12,7 +12,7 @@ jobs:
echo Executing Build and Tests
reg add HKLM\SYSTEM\CurrentControlSet\Control\FileSystem /v LongPathsEnabled /t REG_DWORD /d 1 /f || exit 1
python -m pip install pytest pytest-xdist || exit 1
python -u tools/ci.py -B download --cxx cl.exe -T tools\msvc.dds || exit 1
python -u tools/ci.py -B build -T tools\msvc.dds || exit 1
displayName: Full CI
- publish: _build/dds.exe
artifact: DDS Executable - Windows VS2019
@@ -24,10 +24,10 @@ jobs:
- script: |
set -eu
sudo apt update -y
sudo apt install -y python3-minimal g++-9 ccache
sudo apt install -y python3-minimal g++-9 g++-8 ccache
python3 -m pip install pytest pytest-xdist
displayName: Prepare System
- script: python3 -u tools/ci.py -B download -T tools/gcc-9.dds
- script: python3 -u tools/ci.py -B build -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 -T tools/gcc-9.dds
python3 -u tools/ci.py -B build -T tools/gcc-9.dds
displayName: Build and Run Unit Tests
- publish: _build/dds
artifact: DDS Executable - macOS

+ 0
- 1
tools/ci.py Переглянути файл

@@ -16,7 +16,6 @@ from dds_ci import paths, proc

class CIOptions(NamedTuple):
toolchain: str
skip_deps: bool


def _do_bootstrap_build(opts: CIOptions) -> None:

Завантаження…
Відмінити
Зберегти