Version specified in README.md (#654) #353
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: AgensGraph Regression | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure | |
env: | |
CC: 'clang' | |
CXX: 'clang++' | |
run: ./configure --enable-cassert --enable-debug | |
- name: Build | |
run: make -j$(nproc) -s > /dev/null | |
- name: Regression | |
id: regress | |
continue-on-error: true | |
run: make check -j$(nproc) -C src/bin LC_ALL="C" | |
- name: Check on failures | |
if: steps.regress.outcome != 'success' | |
run: cat src/bin/pg_upgrade/tmp_check/regress/regression.diffs && exit 1 |