Skip to content

Commit 3464e54

Browse files
committed
updating python build to use mrelief settings
1 parent bf0b9c2 commit 3464e54

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build_python_runtime.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ permissions:
2929
env:
3030
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
3131
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
32-
AWS_DEFAULT_REGION: "us-east-1"
33-
S3_BUCKET: "heroku-buildpack-python"
32+
AWS_DEFAULT_REGION: "us-west-2"
33+
S3_BUCKET: "mrelief-general-production"
3434

3535
# Unfortunately these jobs cannot be easily written as a matrix since `matrix.exclude` does not
3636
# support expression syntax, and the `matrix` context is not available inside the job `if` key.
3737
jobs:
3838
heroku-22:
3939
if: inputs.stack == 'heroku-22' || inputs.stack == 'auto'
40-
runs-on: pub-hk-ubuntu-24.04-xlarge
40+
runs-on: ubuntu-latest
4141
env:
4242
STACK_VERSION: "22"
4343
steps:
@@ -62,7 +62,7 @@ jobs:
6262
fail-fast: false
6363
matrix:
6464
arch: ["amd64", "arm64"]
65-
runs-on: ${{ matrix.arch == 'arm64' && 'pub-hk-ubuntu-24.04-arm-xlarge' || 'pub-hk-ubuntu-24.04-xlarge' }}
65+
runs-on: ubuntu-latest
6666
env:
6767
STACK_VERSION: "24"
6868
steps:

lib/python.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# however, it helps Shellcheck realise the options under which these functions will run.
55
set -euo pipefail
66

7-
S3_BASE_URL="https://heroku-buildpack-python.s3.us-east-1.amazonaws.com"
7+
S3_BASE_URL="https://mrelief-general-production.s3.us-west-2.amazonaws.com/"
88

99
function python::install() {
1010
local build_dir="${1}"

0 commit comments

Comments
 (0)