8000 Add meson.build file to support building from the contrib source tree. by rzharkov · Pull Request #84 · postgrespro/pg_wait_sampling · GitHub
[go: up one dir, main page]

Skip to content

Add meson.build file to support building from the contrib source tree. #84

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

Merged
merged 1 commit into from
Jan 22, 2025

Add meson.build file to support building from the contrib source tree.

36f59d2
Select commit
Loading
Failed to load commit list.
Merged

Add meson.build file to support building from the contrib source tree. #84

Add meson.build file to support building from the contrib source tree.
36f59d2
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jan 21, 2025 in 5m 32s

Build Passed

The build passed.

Details

This is a normal build for the meson_build_master branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has six jobs, running in parallel.

Job ENV OS State
293.1 PG_MAJOR=18 SNAPSHOT=1 Linux passed
293.2 PG_MAJOR=17 Linux passed
293.3 PG_MAJOR=16 Linux passed
293.4 PG_MAJOR=15 Linux passed
293.5 PG_MAJOR=14 Linux passed
293.6 PG_MAJOR=13 Linux passed

Build Configuration

Build Option Setting
Language C
Operating System Linux (Jammy)
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "env
4437
": [
    "jobs={:PG_MAJOR=>\"18\", :SNAPSHOT=>\"1\"}={:PG_MAJOR=>\"17\"}={:PG_MAJOR=>\"16\"}={:PG_MAJOR=>\"15\"}={:PG_MAJOR=>\"14\"}={:PG_MAJOR=>\"13\"}"
  ],
  "before_script": [
    "curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -",
    "if [ -n \"${SNAPSHOT}\" ]; then\n  echo \"deb https://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg-snapshot main ${PG_MAJOR}\"\nelif [ -n \"${BETA}\" ]; then\n  echo \"deb https://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main ${PG_MAJOR}\"\nelse\n  echo \"deb https://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main\"\nfi | sudo tee /etc/apt/sources.list.d/postgresql.list\n",
    "if [ -n \"${SNAPSHOT}\" ]; then\n  {\n    echo \"Package: *\"\n    echo \"Pin: origin apt.postgresql.org\"\n    echo \"Pin-Priority: 600\"\n  } | sudo tee /etc/apt/preferences.d/pgdg.pref\nfi\n",
    "sudo apt-get update",
    "sudo systemctl stop postgresql",
    "sudo apt-get install -y --no-install-recommends postgresql-client-${PG_MAJOR} postgresql-${PG_MAJOR} postgresql-server-dev-${PG_MAJOR}",
    "sudo systemctl stop postgresql"
  ],
  "script": [
    "./run-tests.sh"
  ],
  "after_script": [
    "cat regression.diffs",
    "cat logfile"
  ]
}
0