mirror of https://github.com/citusdata/citus.git
Update stretch repositories and install dependencies (git)
(cherry picked from commit 3eb4f471f9
)
release-9.4-gha
parent
3f8e0c414f
commit
c51ec26e0f
|
@ -215,6 +215,13 @@ jobs:
|
|||
- build
|
||||
steps:
|
||||
- uses: actions/checkout@v3.5.0
|
||||
- name: Install dependencies
|
||||
if: matrix.make == 'check-failure'
|
||||
run: |-
|
||||
# update stretch repositories
|
||||
sed -i -e 's/deb.debian.org/archive.debian.org/g' -e 's|security.debian.org|archive.debian.org/|g' -e '/stretch-updates/d' /etc/apt/sources.list
|
||||
apt update || true
|
||||
apt install git -y
|
||||
- uses: "./.github/actions/setup_extension"
|
||||
- name: Run Test
|
||||
run: gosu circleci make -C src/test/${{ matrix.suite }} ${{ matrix.make }}
|
||||
|
@ -251,6 +258,12 @@ jobs:
|
|||
old_pg_major: ${{ matrix.old_pg_major }}
|
||||
new_pg_major: ${{ matrix.new_pg_major }}
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
run: |-
|
||||
# update stretch repositories
|
||||
sed -i -e 's/deb.debian.org/archive.debian.org/g' -e 's|security.debian.org|archive.debian.org/|g' -e '/stretch-updates/d' /etc/apt/sources.list
|
||||
apt update || true
|
||||
apt install git -y
|
||||
- uses: actions/checkout@v3.5.0
|
||||
- uses: "./.github/actions/setup_extension"
|
||||
with:
|
||||
|
@ -289,6 +302,12 @@ jobs:
|
|||
- params
|
||||
- build
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
run: |-
|
||||
# update stretch repositories
|
||||
sed -i -e 's/deb.debian.org/archive.debian.org/g' -e 's|security.debian.org|archive.debian.org/|g' -e '/stretch-updates/d' /etc/apt/sources.list
|
||||
apt update
|
||||
apt install git -y
|
||||
- uses: actions/checkout@v3.5.0
|
||||
- uses: "./.github/actions/setup_extension"
|
||||
with:
|
||||
|
|
Loading…
Reference in New Issue