Merge pull request #2997 from cvvergara/pumpup-to-4.1.0-dev #1040
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build for Ubuntu | |
| # manually triggered workflow | |
| # - 5 * 2 * 2 = 20 jobs are triggered | |
| # - So many jobs take too much time | |
| # When this file changes | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - '.github/workflows/ubuntu.yml' | |
| - 'src/**' | |
| - 'include/**' | |
| - 'pgtap/**' | |
| - 'tools/testers/**' | |
| - 'CMakeLists.txt' | |
| branches-ignore: | |
| - 'gh-pages' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Ubuntu psql | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| psql: [13, 14, 15, 16, 17, 18] | |
| postgis: [3] | |
| release: [Debug, Release] | |
| os: [ubuntu-latest, ubuntu-22.04] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: 'Raise Priority for apt.postgresql.org' | |
| run: | | |
| cat << EOF >> ./pgdg.pref | |
| Package: * | |
| Pin: release o=apt.postgresql.org | |
| Pin-Priority: 600 | |
| EOF | |
| sudo mv ./pgdg.pref /etc/apt/preferences.d/ | |
| sudo apt update | |
| - name: Add PostgreSQL APT repository | |
| run: | | |
| sudo apt-get -y purge postgresql-* | |
| sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg-testing main ${{ matrix.psql }}" > /etc/apt/sources.list.d/pgdg.list' | |
| curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/apt.postgresql.org.gpg >/dev/null | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| libboost-graph-dev \ | |
| libtap-parser-sourcehandler-pgtap-perl \ | |
| postgresql-${{ matrix.psql }} \ | |
| postgresql-${{ matrix.psql }}-pgtap \ | |
| postgresql-${{ matrix.psql }}-postgis-${{ matrix.postgis }} \ | |
| postgresql-${{ matrix.psql }}-postgis-${{ matrix.postgis }}-scripts \ | |
| postgresql-server-dev-${{ matrix.psql }} | |
| - name: Configure for gcc | |
| run: | | |
| export PATH=/usr/lib/postgresql/${{ matrix.psql }}/bin:$PATH | |
| mkdir build | |
| cd build | |
| cmake -DPOSTGRESQL_VERSION=${{ matrix.psql }} \ | |
| -DCMAKE_BUILD_TYPE=${{ matrix.release }} -DBUILD_HTML=OFF -DBUILD_DOXY=OFF .. | |
| - name: Build | |
| run: | | |
| cd build | |
| make -j 4 | |
| sudo make install | |
| - name: Test | |
| run: | | |
| sudo service postgresql start | |
| export PG_RUNNER_USER=`whoami` | |
| export PGPORT=5432 | |
| sudo -u postgres psql -p ${PGPORT} -c "DROP DATABASE IF EXISTS ___pgr___test___;" | |
| sudo -u postgres psql -p ${PGPORT} -c "DROP DATABASE IF EXISTS \"${PG_RUNNER_USER}\";" | |
| sudo -u postgres psql -p ${PGPORT} -c "DROP ROLE IF EXISTS \"${PG_RUNNER_USER}\";" | |
| sudo -u postgres psql -p ${PGPORT} -c "CREATE ROLE \"${PG_RUNNER_USER}\" WITH LOGIN SUPERUSER;" | |
| sudo -u postgres psql -p ${PGPORT} -c "CREATE DATABASE \"${PG_RUNNER_USER}\";" | |
| psql -c "CREATE DATABASE ___pgr___test___;" | |
| bash ./tools/testers/pg_prove_tests.sh ${PG_RUNNER_USER} ${PGPORT} Release | |
| psql -c "DROP DATABASE IF EXISTS ___pgr___test___;" |