mirror of https://github.com/citusdata/citus.git
17 lines
430 B
YAML
17 lines
430 B
YAML
name: install_extension
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install Extension
|
|
run: tar xfv "install-$PG_MAJOR.tar" --directory /
|
|
shell: bash
|
|
- name: Configure
|
|
run: |-
|
|
chown -R circleci .
|
|
git config --global --add safe.directory ${GITHUB_WORKSPACE}
|
|
gosu circleci ./configure --without-pg-version-check
|
|
shell: bash
|
|
- name: Enable core dumps
|
|
run: ulimit -c unlimited
|
|
shell: bash
|