Skip to content

Commit 27774d2

Browse files
committed
chore: Install ubuntu 18 deps
1 parent 376d0c8 commit 27774d2

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/ami-build-ubuntu-18.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- run: docker context create builders
4646
- uses: docker/setup-buildx-action@v2
4747
with:
48-
endpoint: builders
48+
endpoint: builders
4949
- uses: docker/build-push-action@v3
5050
with:
5151
push: false
@@ -57,6 +57,7 @@ jobs:
5757
platforms: linux/${{ matrix.arch }}
5858
cache-from: type=gha
5959
cache-to: type=gha,mode=max
60+
6061
- name: Extract built packages
6162
run: |
6263
mkdir -p /tmp/extensions ansible/files/extensions

ansible/files/admin_api_scripts/pg_upgrade_complete.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77

88
set -eEuo pipefail
99

10+
SCRIPT_DIR=$(dirname -- "$0";)
1011
# shellcheck disable=SC1091
11-
source ./pg_upgrade_common.sh
12+
source "$SCRIPT_DIR/pg_upgrade_common.sh"
1213

1314
LOG_FILE="/tmp/pg-upgrade-complete.log"
1415

ansible/files/admin_api_scripts/pg_upgrade_initiate.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ PG13_EXTENSIONS_TO_DISABLE=(
2727

2828
set -eEuo pipefail
2929

30+
SCRIPT_DIR=$(dirname -- "$0";)
3031
# shellcheck disable=SC1091
31-
source ./pg_upgrade_common.sh
32+
source "$SCRIPT_DIR/pg_upgrade_common.sh"
3233

3334
LOG_FILE="/var/log/pg-upgrade-initiate.log"
3435

0 commit comments

Comments
 (0)