File tree 5 files changed +10
-63
lines changed
postgres-appliance/build_scripts
5 files changed +10
-63
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
- ' *'
6
6
7
7
env :
8
- REGISTRY : ghcr.io
8
+ REGISTRY : ${{ vars.GCR_PREFIX }}
9
9
IMAGE_NAME : ${{ github.repository }}
10
10
11
11
jobs :
44
44
- name : Set up Docker Buildx
45
45
uses : docker/setup-buildx-action@v3
46
46
47
- - name : Login to GHCR
48
- uses : docker/login-action@v3
49
- with :
50
- registry : ${{ env.REGISTRY }}
51
- username : ${{ github.actor }}
52
- password : ${{ secrets.GITHUB_TOKEN }}
53
47
54
48
- name : Build and export to local docker for testing
55
49
uses : docker/build-push-action@v6
64
58
run : |
65
59
bash postgres-appliance/tests/test_spilo.sh
66
60
61
+ - name : Authenticate to Google Cloud
62
+ uses : google-github-actions/auth@v1
63
+ with :
64
+ credentials_json : ' ${{ secrets.GCR_CREDENTIALS }}'
65
+ - run : gcloud auth configure-docker -q gcr.io
66
+
67
67
- name : Build arm64 additionaly and push multiarch image to ghcr
68
68
uses : docker/build-push-action@v6
69
69
with :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ .idea
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ curl -sL "https://github.com/zalando-pg/bg_mon/archive/$BG_MON_COMMIT.tar.gz" |
55
55
curl -sL " https://github.com/zalando-pg/pg_auth_mon/archive/$PG_AUTH_MON_COMMIT .tar.gz" | tar xz
56
56
curl -sL " https://github.com/cybertec-postgresql/pg_permissions/archive/$PG_PERMISSIONS_COMMIT .tar.gz" | tar xz
57
57
curl -sL " https://github.com/zubkov-andrei/pg_profile/archive/$PG_PROFILE .tar.gz" | tar xz
58
+ curl -sL " https://github.com/arkhipov/temporal_tables/archive/master.tar.gz" | tar xz
58
59
git clone -b " $SET_USER " https://github.com/pgaudit/set_user.git
59
60
60
61
apt-get install -y \
@@ -155,6 +156,7 @@ for version in $DEB_PG_SUPPORTED_VERSIONS; do
155
156
set_user \
156
157
pg_permissions-${PG_PERMISSIONS_COMMIT} \
157
158
pg_profile-${PG_PROFILE} \
159
+ temporal_tables-master \
158
160
" ${EXTRA_EXTENSIONS[@]} " ; do
159
161
make -C " $n " USE_PGXS=1 clean install-strip
160
162
done
You can’t perform that action at this time.
0 commit comments