Skip to content

Update Travis CI and copyrights #55

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ notifications:
on_failure: always

env:
- PG_VERSION=17 LEVEL=nightmare
- PG_VERSION=17 LEVEL=hardcore
- PG_VERSION=17
- PG_VERSION=16 LEVEL=nightmare
- PG_VERSION=16 LEVEL=hardcore
- PG_VERSION=16
Expand All @@ -42,9 +45,12 @@ env:
# XXX: consider fixing nightmare mode
matrix:
allow_failures:
- env: PG_VERSION=11
- env: PG_VERSION=11 LEVEL=hardcore
- env: PG_VERSION=11 LEVEL=nightmare
- env: PG_VERSION=12 LEVEL=nightmare
- env: PG_VERSION=13 LEVEL=nightmare
- env: PG_VERSION=14 LEVEL=nightmare
- env: PG_VERSION=15 LEVEL=nightmare
- env: PG_VERSION=16 LEVEL=nightmare
- env: PG_VERSION=17 LEVEL=nightmare
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pg_variables is released under the PostgreSQL License, a liberal Open Source license, similar to the BSD or MIT licenses.

Copyright (c) 2016-2022, Postgres Professional
Copyright (c) 2016-2024, Postgres Professional
Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
Portions Copyright (c) 1994, The Regents of the University of California

Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
tests:
services:
tests:
build: .
2 changes: 1 addition & 1 deletion pg_variables.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* pg_variables.c
* Functions, which get or set variables values
*
* Copyright (c) 2015-2022, Postgres Professional
* Copyright (c) 2015-2024, Postgres Professional
*
*-------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion pg_variables.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* pg_variables.c
* exported definitions for pg_variables.c
*
* Copyright (c) 2015-2022, Postgres Professional
* Copyright (c) 2015-2024, Postgres Professional
*
*-------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion pg_variables_record.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* pg_variables_record.c
* Functions to work with record types
*
* Copyright (c) 2015-2022, Postgres Professional
* Copyright (c) 2015-2024, Postgres Professional
*
*-------------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion run_tests.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

#
# Copyright (c) 2018-2022, Postgres Professional
# Copyright (c) 2018-2024, Postgres Professional
#
# supported levels:
# * standard
Expand Down