diff --git a/.github/workflows/bionic_postgres12_postgis25.yml b/.github/workflows/bionic_postgres12_postgis25.yml index a18525d..4bc7004 100644 --- a/.github/workflows/bionic_postgres12_postgis25.yml +++ b/.github/workflows/bionic_postgres12_postgis25.yml @@ -1,4 +1,4 @@ -name: "[Ubuntu Bionic] PostgreSQL 12 / PostGIS 2.5" +name: "[ubuntu-18.04] PostgreSQL 12 and PostGIS 2.5" on: [push, pull_request] diff --git a/.github/workflows/bionic_postgres12_postgis3.yml b/.github/workflows/bionic_postgres12_postgis3.yml index 47f7145..4ce7d37 100644 --- a/.github/workflows/bionic_postgres12_postgis3.yml +++ b/.github/workflows/bionic_postgres12_postgis3.yml @@ -1,4 +1,4 @@ -name: "[Ubuntu Bionic] PostgreSQL 12 / PostGIS 3" +name: "[ubuntu-18.04] PostgreSQL 12 and PostGIS 3" on: [push, pull_request] diff --git a/.github/workflows/code_layout.yml b/.github/workflows/code_layout.yml new file mode 100644 index 0000000..7381e30 --- /dev/null +++ b/.github/workflows/code_layout.yml @@ -0,0 +1,17 @@ +name: "Code layout" + +on: [push, pull_request] + +jobs: + code: + name: Code layout + runs-on: ubuntu-18.04 + steps: + - name: Install nvm + uses: actions/setup-node@v1 + with: + node-version: '8' + - name: Linter + run: | + npm install -g eclint@1.1.5 + eclint check * */* */cunit/* diff --git a/.github/workflows/xenial_postgres10_postgis25.yml b/.github/workflows/xenial_postgres10_postgis25.yml index e044c57..bcfe1d3 100644 --- a/.github/workflows/xenial_postgres10_postgis25.yml +++ b/.github/workflows/xenial_postgres10_postgis25.yml @@ -1,4 +1,4 @@ -name: "[Ubuntu Xenial] PostgreSQL 10 / PostGIS 2.5" +name: "[ubuntu-16.04] PostgreSQL 10 and PostGIS 2.5" on: [push, pull_request] diff --git a/.github/workflows/xenial_postgres11_postgis25.yml b/.github/workflows/xenial_postgres11_postgis25.yml index 8ab4b7e..dd9e335 100644 --- a/.github/workflows/xenial_postgres11_postgis25.yml +++ b/.github/workflows/xenial_postgres11_postgis25.yml @@ -1,4 +1,4 @@ -name: "[Ubuntu Xenial] PostgreSQL 11 / PostGIS 2.5" +name: "[ubuntu-16.04] PostgreSQL 11 and PostGIS 2.5" on: [push, pull_request] diff --git a/.github/workflows/xenial_postgres96_postgis25.yml b/.github/workflows/xenial_postgres96_postgis25.yml index 82cebfd..de75660 100644 --- a/.github/workflows/xenial_postgres96_postgis25.yml +++ b/.github/workflows/xenial_postgres96_postgis25.yml @@ -1,4 +1,4 @@ -name: "[Ubuntu Xenial] PostgreSQL 9.6 / PostGIS 2.5" +name: "[ubuntu-16.04] PostgreSQL 9.6 and PostGIS 2.5" on: [push, pull_request] diff --git a/README.md b/README.md index 272d098..6254bd0 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,26 @@ -[![Build Status](https://travis-ci.org/pgpointcloud/pointcloud.svg?branch=master)](https://travis-ci.org/pgpointcloud/pointcloud) - # Pointcloud # A PostgreSQL extension for storing point cloud (LIDAR) data. - Mailing list: http://lists.osgeo.org/mailman/listinfo/pgpointcloud/ +## Status + +### Ubuntu 16.04 + +| | PostGIS 2.5 | +| -------------- |:-------------:| +| PostgreSQL 9.6 | ![](https://img.shields.io/github/workflow/status/pblottiere/pointcloud/%5Bubuntu-16.04%5D%20PostgreSQL%209.6%20and%20PostGIS%202.5?label=CI&logo=github&style=plastic) | +| PostgreSQL 10 | ![](https://img.shields.io/github/workflow/status/pblottiere/pointcloud/%5Bubuntu-16.04%5D%20PostgreSQL%2010%20and%20PostGIS%202.5?label=CI&logo=github&style=plastic) | +| PostgreSQL 11 | ![](https://img.shields.io/github/workflow/status/pblottiere/pointcloud/%5Bubuntu-16.04%5D%20PostgreSQL%2011%20and%20PostGIS%202.5?label=CI&logo=github&style=plastic) | + +### Ubuntu 18.04 + + +| | PostGIS 2.5 | PostGIS 3 | +| -------------- |:-------------:|:---------:| +| PostgreSQL 12 | ![](https://img.shields.io/github/workflow/status/pblottiere/pointcloud/%5Bubuntu-18.04%5D%20PostgreSQL%2012%20and%20PostGIS%202.5?label=CI&logo=github&style=plastic) | ![](https://img.shields.io/github/workflow/status/pblottiere/pointcloud/%5Bubuntu-18.04%5D%20PostgreSQL%2012%20and%20PostGIS%203?label=CI&logo=github&style=plastic) | + ## Build/Install ##