Summary
Jobs
regress-tests (14, x64, debug, with-lfc)
regress-tests (14, x64, debug, without-lfc)
regress-tests (14, x64, release, with-lfc)
regress-tests (14, x64, release, without-lfc)
regress-tests (14, arm64, debug, with-lfc)
regress-tests (14, arm64, debug, without-lfc)
regress-tests (14, arm64, release, with-lfc)
regress-tests (14, arm64, release, without-lfc)
regress-tests (15, x64, debug, with-lfc)
regress-tests (15, x64, debug, without-lfc)
regress-tests (15, x64, release, with-lfc)
regress-tests (15, x64, release, without-lfc)
regress-tests (15, arm64, debug, with-lfc)
regress-tests (15, arm64, debug, without-lfc)
regress-tests (15, arm64, release, with-lfc)
regress-tests (15, arm64, release, without-lfc)
regress-tests (16, x64, debug, with-lfc)
regress-tests (16, x64, debug, without-lfc)
regress-tests (16, x64, release, with-lfc)
regress-tests (16, x64, release, without-lfc)
regress-tests (16, arm64, debug, with-lfc)
regress-tests (16, arm64, debug, without-lfc)
regress-tests (16, arm64, release, with-lfc)
regress-tests (16, arm64, release, without-lfc)
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 : Test for workflow
on : push
defaults :
run :
shell : bash -euxo pipefail {0}
jobs :
regress-tests :
runs-on : ubuntu-latest
strategy :
fail-fast : false
matrix :
pg_version : [14, 15, 16]
arch : [x64, arm64]
build_type : [debug, release]
lfc_state : [with-lfc,without-lfc]
steps :
- name : Show vars
continue-on-error : ${{ matrix.lfc_state == 'with-lfc' && matrix.build-type == 'debug' }}
run : |
echo pg_version: $PG_VERSION
echo build_type: $BUILD_TYPE
echo lfc: $LFC_STATE
if [ $LFC_STATE == with-lfc ] && [ $BUILD_TYPE == debug ]; then
exit 1
fi
env :
PG_VERSION : ${{ matrix.pg_version }}
LFC_STATE : ${{ matrix.lfc_state }}
BUILD_TYPE : ${{ matrix.build_type }}
You can’t perform that action at this time.