Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #1161

Merged
merged 3 commits into from
Aug 19, 2024
Merged

Fix CI #1161

merged 3 commits into from
Aug 19, 2024

Commits on Aug 19, 2024

  1. Run macOS CI jobs under macOS 12

    macOS 11 is not supported by GitHub CI runners any longer.
    vadz committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    4707520 View commit details
    Browse the repository at this point in the history
  2. Fix starting PostgreSQL in AppVeyor CI builds

    Don't use "services" section as it's not flexible enough to allow
    starting different versions of Postgres depending on the matrix entry
    and just launch the service manually.
    vadz committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    1c792dc View commit details
    Browse the repository at this point in the history
  3. Replace remaining occurrences of sprintf() with snprintf()

    This (unsafe) function is deprecated in macOS 12 SDK and using it
    results in the warnings that are not worth suppressing -- instead, just
    stop using it and always use snprintf(), even when we know that we can't
    overflow the buffer.
    vadz committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    b2172e4 View commit details
    Browse the repository at this point in the history