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

Makefile cleanup #75

Merged
merged 3 commits into from
Oct 18, 2023

Remove ancient "alter extension add" files

bcfbd46
Select commit
Loading
Failed to load commit list.
Merged

Makefile cleanup #75

Remove ancient "alter extension add" files
bcfbd46
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 16, 2023 in 15m 13s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #75 Makefile cleanup.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has seven jobs, running in parallel.

Job ENV OS State
287.1 PG_SUPPORTED_VERSIONS=10 Linux passed
287.2 PG_SUPPORTED_VERSIONS=11 Linux passed
287.3 PG_SUPPORTED_VERSIONS=12 Linux passed
287.4 PG_SUPPORTED_VERSIONS=13 Linux passed
287.5 PG_SUPPORTED_VERSIONS=14 Linux passed
287.6 PG_SUPPORTED_VERSIONS=15 Linux passed
287.7 PG_SUPPORTED_VERSIONS=16 Linux passed

Build Configuration

Build Option Setting
Language C
Operating System Linux (Focal)
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "env": [
    "jobs={:PG_SUPPORTED_VERSIONS=>\"10\"}={:PG_SUPPORTED_VERSIONS=>\"11\"}={:PG_SUPPORTED_VERSIONS=>\"12\"}={:PG_SUPPORTED_VERSIONS=>\"13\"}={:PG_SUPPORTED_VERSIONS=>\"14\"}={:PG_SUPPORTED_VERSIONS=>\"15\"}={:PG_SUPPORTED_VERSIONS=>\"16\"}"
  ],
  "before_install": [
    "sudo apt-get -qq update",
    "sudo apt-get -y install postgresql-common libhealpix-cxx-dev docbook-xml docbook-xsl libxml2-utils xsltproc fop"
  ],
  "install": [
    "sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -p -v $PG_SUPPORTED_VERSIONS -i"
  ],
  "script": [
    "make PROFILE=\"-Werror\"",
    "sudo make install",
    "pg_virtualenv make installcheck",
    "if test -s regression.diffs; then cat regression.diffs; exit 1; fi",
    "pg_virtualenv make test",
    "if test -s regression.diffs; then cat regression.diffs; exit 1; fi",
    "pg_virtualenv make crushtest",
    "if test -s regression.diffs; then cat regression.diffs; exit 1; fi",
    "make clean",
    "make PROFILE=\"-Werror\" USE_HEALPIX=0",
    "sudo make USE_HEALPIX=0 install",
    "pg_virtualenv make USE_HEALPIX=0 installcheck",
    "if test -s regression.diffs; then cat regression.diffs; exit 1; fi",
    "pg_virtualenv make USE_HEALPIX=0 test",
    "if test -s regression.diffs; then cat regression.diffs; exit 1; fi",
    "pg_virtualenv make USE_HEALPIX=0 crushtest",
    "if test -s regression.diffs; then cat regression.diffs; exit 1; fi",
    "make -C doc"
  ]
}