Fix build with Postgres 166 libpq-dev in debian. #73
Workflow file for this run
This file contains 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: Run Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
run_tests: | |
name: Run test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
PGVERSION: | |
- 11 | |
- 12 | |
- 13 | |
- 14 | |
- 15 | |
- 16 | |
TEST: | |
- multi | |
- single | |
- monitor | |
- ssl | |
- citus | |
include: | |
- PGVERSION: 14 | |
TEST: tablespaces | |
- PGVERSION: 14 | |
TEST: linting | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set environment variables | |
run: | | |
echo "PGVERSION=${{ matrix.PGVERSION }}" >> $GITHUB_ENV | |
echo "TEST=${{ matrix.TEST }}" >> $GITHUB_ENV | |
echo "LINTING=${{ matrix.LINTING }}" >> $GITHUB_ENV | |
echo "TRAVIS_BUILD_DIR=$(pwd)" >> $GITHUB_ENV | |
- name: Clone and install linting tools | |
if: ${{ env.TEST == 'linting' }} | |
run: | | |
sudo apt-get install python3-pip | |
pip3 install --user black | |
black --version | |
gcc --version | |
git clone -b v0.8.19 --depth 1 https://github.com/citusdata/tools.git ../tools | |
sudo make -C ../tools install | |
install_uncrustify | |
rm -rf uncrustify* | |
- name: Check code formatting and banned function | |
if: ${{ env.TEST == 'linting' }} | |
run: | | |
make lint | |
- name: Build documentation | |
if: ${{ env.TEST == 'linting' }} | |
run: | | |
make build-docs | |
- name: Build Docker Test Image | |
if: ${{ env.TEST != 'linting' }} | |
run: | | |
make build-test-image | |
- name: Run Test | |
if: ${{ env.TEST != 'linting' }} | |
timeout-minutes: 15 | |
run: | | |
make ci-test |