Skip to content

[DO NOT SQUASH MERGE] Community Merge for 2_X #2191

[DO NOT SQUASH MERGE] Community Merge for 2_X

[DO NOT SQUASH MERGE] Community Merge for 2_X #2191

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build-and-run-tests:
name: Build and run tests
runs-on: ubuntu-latest
steps:
- name: clone-repository
uses: actions/checkout@v4
- name: build-postgres
run: |
./configure
make world-bin -j8 COPT='-Werror'
- name: run-tests
run: |
make check -j8
- name: upload-test-summary
if: failure()
uses: actions/upload-artifact@v4
with:
name: regression-summary
path: src/test/regress/regression.out
- name: upload-test-differences
if: failure()
uses: actions/upload-artifact@v4
with:
name: regression-differences
path: src/test/regress/regression.diffs