10000 chore: Build Ubuntu 18 binaries by pcnc · Pull Request #614 · supabase/postgres · GitHub
[go: up one dir, main page]

Skip to content

chore: Build Ubuntu 18 binaries #614

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 31 commits into from
Apr 13, 2023
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9388f6d
chore: create Ubuntu 18 workflow
pcnc Mar 27, 2023
c94505f
chore: create Ubuntu 18 workflow
pcnc Mar 27, 2023
0dfda9d
chore: streamline workflow
pcnc Mar 27, 2023
eea3f25
chore: update
pcnc Mar 30, 2023
5539ded
chore: update sources
pcnc Mar 30, 2023
e99de23
chore: trigger workflow
pcnc Mar 30, 2023
d3ae789
chore: more soruces
pcnc Mar 30, 2023
97a36f3
chore: even more sources
pcnc Mar 30, 2023
43180fb
chore: move signed key addition
pcnc Mar 30, 2023
bf4c260
chore: trust more
pcnc Mar 30, 2023
1650744
chore: get ubuntu codename
pcnc Mar 30, 2023
2a36f43
chore: refactor llvm support for bionic
pcnc Mar 30, 2023
b95c18c
chore: fix missing env var
pcnc Mar 30, 2023
17b7bae
chore: fix ubuntu distro sources
pcnc Mar 30, 2023
7f8939c
chore: more ubuntu 18 shenanigans
pcnc Apr 5, 2023
fb9b665
Merge branch 'develop' into pcnc/build-glibc227-bin
pcnc Apr 5, 2023
62242be
chore: removing incompatible extensions
pcnc Apr 5, 2023
ce56df5
chore: enable Vault (#598)
dragarcia Apr 4, 2023
8902ddc
Revert "chore: enable Vault (#598)" (#607)
darora Apr 5, 2023
028ef68
feat: bump gotrue to v2.57.2 (#609)
hf Apr 5, 2023
37c5c72
feat: remove `disable.vault` suffix from 15.1.0.66 (#610)
hf Apr 5, 2023
84f1ecf
chore: enable Vault with safety measures (#611)
dragarcia Apr 7, 2023
af6e16b
update migrations guidelines
soedirgo Apr 7, 2023
930923c
chore: better os-version specific handling
pcnc Apr 8, 2023
8267a78
chore: better workflow management
pcnc Apr 10, 2023
037e6e0
chore: use full version name for Postgres releases
pcnc Apr 10, 2023
cf0c049
chore: revert to old triggers
pcnc Apr 10, 2023
b5781ff
chore: bump version
pcnc Apr 10, 2023
58f93dc
Merge branch 'develop' into pcnc/build-glibc227-bin
pcnc Apr 13, 2023
8f78b6e
chore: bump adminapi; pg version
pcnc Apr 13, 2023
bc32c57
Merge remote-tracking branch 'origin/develop' into pcnc/build-glibc22…
pcnc Apr 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8000
Prev Previous commit
Next Next commit
chore: update sources
  • Loading branch information
pcnc committed Mar 30, 2023
commit 5539dedbce4befe504338359eee529c151f31f75
9 changes: 8 additions & 1 deletion ebssurrogate/scripts/surrogate-bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,21 @@ EOF
}

function setup_chroot_environment {
UBUNTU_VERSION=$(lsb_release -cs) # 'focal' for Ubuntu 20.04

# Bootstrap Ubuntu into /mnt
debootstrap --arch ${ARCH} --variant=minbase focal /mnt
debootstrap --arch ${ARCH} --variant=minbase "$UBUNTU_VERSION" /mnt

# Update ec2-region
REGION=$(curl --silent --fail http://169.254.169.254/latest/meta-data/placement/availability-zone | sed -E 's|[a-z]+$||g')
sed -i "s/REGION/${REGION}/g" /tmp/sources.list
cp /tmp/sources.list /mnt/etc/apt/sources.list

if [ "${UBUNTU_VERSION}" = "bionic" ]; then
sed -i "s/focal/bionic/g" /tmp/sources.list
cp /tmp/sources.list /mnt/etc/apt/sources.list
fi

if [ "${ARCH}" = "arm64" ]; then
create_fstab
fi
Expand Down
0