[Issue 21133] What are Azure Pipelines testing?

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sun Aug 9 09:59:34 UTC 2020


https://issues.dlang.org/show_bug.cgi?id=21133

Rainer Schuetze <r.sagitario at gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |r.sagitario at gmx.de

--- Comment #1 from Rainer Schuetze <r.sagitario at gmx.de> ---
ou can find most of this information in the .azure-pipelines.yml:

Windows x64:
- build 64-bit dmd using 32-bit release dmd via makefile/build.d
- build 64-bit druntime
- build 64-bit phobos
- run druntime unittests and tests
- run dmd test suite

Windows_OMF win32:
- build 32-bit dmd using 32-bit release dmd and DMC runtime via
makefile/build.d
- build 32-bit OMF druntime
- build 32-bit OMF phobos
- run druntime unittests and tests
- run dmd test suite

Windows_VisualD win32-ldc:
- build 32-bit dmd using release ldc and MS runtime via VS project/Visual D
- build 32-bit COFF druntime
- run druntime unittests and tests
- build 32-bit COFF phobos
- run dmd test suite
- run phobos unittests

Windows_LDC_Debug x64-debug-ldc
- build 64-bit debug dmd using release ldc via VS project/Visual D
- build 64-bit COFF druntime
- run druntime unittests and tests
- build 64-bit COFF phobos
- run dmd test suite
- run phobos unittests

Windows_LDC_MingGW win32-ldc
- build 64-bit debug dmd using release ldc via VS project/Visual D
- build 64-bit COFF druntime
- run druntime unittests and tests linking with MinGW runtime and lld-link.exe
- build 64-bit COFF phobos
- run dmd test suite linking with MinGW runtime and lld-link.exe

A couple of additional comments in the yml file might be helpful.

If we want to show this somewhere in the CI, the best place possible seems to
be at the top of the log of the respective job.

--


More information about the Digitalmars-d-bugs mailing list