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

Add function to create spoly from an array of numbers in radians #96

Merged
merged 1 commit into from
Nov 3, 2023

Add function to create spoly from an array of numbers in radians.

0fcfa36
Select commit
Loading
Failed to load commit list.
Merged

Add function to create spoly from an array of numbers in radians #96

Add function to create spoly from an array of numbers in radians.
0fcfa36
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Nov 1, 2023 in 14m 21s

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 #96 Add function to create spoly from an array of numbers in radians.
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
332.1 PG_SUPPORTED_VERSIONS=10 Linux passed
332.2 PG_SUPPORTED_VERSIONS=11 Linux passed
332.3 PG_SUPPORTED_VERSIONS=12 Linux passed
332.4 PG_SUPPORTED_VERSIONS=13 Linux passed
332.5 PG_SUPPORTED_VERSIONS=14 Linux passed
332.6 PG_SUPPORTED_VERSIONS=15 Linux passed
332.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"
  ]
}