summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
Commit message (Collapse)AuthorAgeFilesLines
* ci: bump windows image and use newer runner and vs2019Tim-Philipp Müller2022-08-061-7/+7
| | | | The old 1809 runner will be decommissioned at some point.
* .gitlab-ci.yml: Correctly upgrade `meson`.Werner Lemberg2022-06-211-1/+1
|
* [meson] Disable FreeType in HarfBuzz fallback.Xavier Claessens2022-06-211-1/+1
| | | | | | | | | | | | | | This avoids cyclic subproject configuration when the 'harfbuzz' feature is enabled, or `--wrap-mode=forcefallback` is used, but HarfBuzz is built as a subproject. HarfBuzz does the same and disables HarfBuzz support when configuring FreeType as a subproject. * meson.build (harfbuzz_dep): Implement it. * subprojects/harfbuzz.wrap: New file. * .gitlab-ci.yml [windows meson]: Use latest version of the meson 0.59 series, which has a necessary bug fix to make CI work.
* [meson] Remove `default_library=both` from `default_options`.Xavier Claessens2022-04-241-5/+7
| | | | | | | | | | | | | | It is inconsistent with what all other Meson projects do. It also prevents static linking to FreeType when it is a subproject because `default_options` in a subproject takes precedence on values set on the main project. For example, building 'GStreamer' with `-Ddefault_library=static` would still dynamically link on FreeType unless the user also sets `-Dfreetype2:default_library=static`. * meson.build: Updated. * .gitlab-ci.yml: Retain `both` option for testing.
* .gitlab-ci.yml: Add a Universal Windows build targetSteve Lhomme2022-04-141-5/+22
| | | | | | | It's compiled for Windows 10 and up, ensuring UNICODE is set (default for UWP) and selecting the proper WINAPI_FAMILY (WINAPI_FAMILY_APP). Do not try to run the UWP exe in the Docker as it doesn't work.
* .gitlab-ci.yml: Minor comment cleanups.Werner Lemberg2022-01-121-8/+18
|
* .gitlab-ci.yml: Add steps to `before_script` to ensure recent CA.Azamat H. Hackimov2022-01-121-0/+3
| | | | | | Fetch current list of valid CAs from Windows Update and manually import them to trusted datastore. This action is required to make downloads work from sites that need recent Let's Encrypt ISRG Root X1 certificate.
* .gitlab-ci.yml: Fix typo in previous commit.Werner Lemberg2022-01-111-2/+1
|
* .gitlab-ci.yml: Update Windows image.Werner Lemberg2022-01-111-1/+2
| | | | | | | | | | | | | | | The old image produced errors like ``` Downloading zlib patch from https://wrapdb.mesonbuild.com/v2/zlib_1.2.11-5/get_patch A fallback URL could be specified using patch_fallback_url key in the wrap file WrapDB connection failed to https://wrapdb.mesonbuild.com/v2/zlib_1.2.11-5/get_patch with error <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate has expired (_ssl.c:1122)> ```
* Add clang build to linux CIAnurag Thakur2021-10-141-2/+17
|
* CI: Add macOS CI, including a clang buildAnurag Thakur2021-10-121-0/+39
|
* CI: Hardcode meson version to fix build failure on windowsAnuthaDev2021-10-021-1/+2
|
* * .gitlab-ci.yml: Fixed cmake build, using correct options.AnuthaDev2021-07-241-10/+10
|
* [CI] Introduce linux CI and refactor job namesAnurag Thakur2021-06-291-6/+95
| | | | * .gitlab-ci.yml: Added jobs for building freetype on linux.
* [ci] Add basic support for Meson builds with MSVC on Windows.Tim-Philipp Müller2021-03-071-0/+54
This adds meson jobs for VS2017 (x86 and x86_64). * .gitlab-ci.yml: New file.