-
-
Notifications
You must be signed in to change notification settings - Fork 185
feat: advance to ubuntu 24.04 #1416
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
base: develop
Are you sure you want to change the base?
Changes from all commits
788db1c
83baf01
fb322f7
4b724e7
abca7d3
f8a4be0
654b3c0
9650060
57af74f
080baf6
d3e0f5a
ac212cd
90b3d64
07c5563
b011bcc
9e13a1e
5937ee7
3b60192
6aad05e
ab6edd6
66406b7
84de259
176726f
a726727
34a387d
0c654c1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ jobs: | |
|
||
- name: Upload pg_upgrade scripts to s3 staging | ||
run: | | ||
aws s3 cp /tmp/pg_upgrade_bin.tar.gz "s3://${{ secrets.ARTIFACTS_BUCKET }}/upgrades/postgres/supabase-postgres-${{ steps.process_release_version.outputs.version }}/20.04.tar.gz" | ||
aws s3 cp /tmp/pg_upgrade_bin.tar.gz s3://${{ secrets.ARTIFACTS_BUCKET }}/upgrades/postgres/supabase-postgres-${{ steps.process_release_version.outputs.version }}/24.04.tar.gz | ||
|
||
- name: Slack Notification on Failure | ||
if: ${{ failure() }} | ||
|
@@ -113,7 +113,7 @@ jobs: | |
|
||
- name: Upload pg_upgrade scripts to s3 prod | ||
run: | | ||
aws s3 cp /tmp/pg_upgrade_bin.tar.gz "s3://${{ secrets.PROD_ARTIFACTS_BUCKET }}/upgrades/postgres/supabase-postgres-${{ steps.process_release_version.outputs.version }}/20.04.tar.gz" | ||
aws s3 cp /tmp/pg_upgrade_bin.tar.gz s3://${{ secrets.PROD_ARTIFACTS_BUCKET }}/upgrades/postgres/supabase-postgres-${{ steps.process_release_version.outputs.version }}/24.04.tar.gz | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto. Deduplication is needed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, agree we should address this. As stated above, as @pcnc had discussed in slack thread, these are currently tied to infrastructure functionality. So, instead of trying to make those changes as a part of the upgrade to ubuntu 24.04 PR, let's create another PR where we can introduce those changes and test and make sure nothing else breaks. We should not try to accomplish that in this PR. |
||
|
||
- name: Slack Notification on Failure | ||
if: ${{ failure() }} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ focal main restricted | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ focal-updates main restricted | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ focal universe | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ focal-updates universe | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ focal multiverse | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ focal-updates multiverse | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ focal-backports main restricted universe multiverse | ||
deb http://ports.ubuntu.com/ubuntu-ports focal-security main restricted | ||
deb http://ports.ubuntu.com/ubuntu-ports focal-security universe | ||
deb http://ports.ubuntu.com/ubuntu-ports focal-security multiverse | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ noble main restricted | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ noble-updates main restricted | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ noble universe | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ noble-updates universe | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ noble multiverse | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ noble-updates multiverse | ||
deb http://REGION.clouds.ports.ubuntu.com/ubuntu-ports/ noble-backports main restricted universe multiverse | ||
deb http://ports.ubuntu.com/ubuntu-ports noble-security main restricted | ||
deb http://ports.ubuntu.com/ubuntu-ports noble-security universe | ||
deb http://ports.ubuntu.com/ubuntu-ports noble-security multiverse |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ focal main restricted | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ focal-updates main restricted | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ focal universe | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ focal-updates universe | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ focal multiverse | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ focal-updates multiverse | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse | ||
deb http://security.ubuntu.com/ubuntu focal-security main restricted | ||
deb http://security.ubuntu.com/ubuntu focal-security universe | ||
deb http://security.ubuntu.com/ubuntu focal-security multiverse | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ noble main restricted | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ noble-updates main restricted | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ noble universe | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ noble-updates universe | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ noble multiverse | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ noble-updates multiverse | ||
deb http://REGION.ec2.archive.ubuntu.com/ubuntu/ noble-backports main restricted universe multiverse | ||
deb http://security.ubuntu.com/ubuntu noble-security main restricted | ||
deb http://security.ubuntu.com/ubuntu noble-security universe | ||
deb http://security.ubuntu.com/ubuntu noble-security multiverse |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can these version changes be deduplicated?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@steve-chavez we can certainly address this. But as @pcnc had discussed in slack thread, these are currently tied to infrastructure functionality. So, instead of trying to make those changes as a part of the upgrade to ubuntu 24.04 PR, let's create another PR where we can introduce those changes and test and make sure nothing else breaks. We should not try to accomplish that in this PR.