Skip to content

Commit 9e68501

Browse files
committed
saner
1 parent 7cd2568 commit 9e68501

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/fetch_releases.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,26 @@ jobs:
2424
- title: "astral-glibc"
2525
script: "${GITHUB_WORKSPACE}/main/fetch_astral_glibc.sh"
2626
arch: "aarch64"
27-
file: "/tmp/python-astral-glibc.tar"
27+
file: "/tmp/python.tar"
2828
runner: "ubuntu-24.04-arm"
2929

3030
- title: "astral-glibc"
3131
script: "${GITHUB_WORKSPACE}/main/fetch_astral_glibc.sh"
3232
arch: "x86_64"
33-
file: "/tmp/python-astral-glibc.tar"
33+
file: "/tmp/python.tar"
3434
runner: "ubuntu-latest"
3535

3636
#No musl builds yet
3737
#- title: "astral-musl"
3838
# script: "${GITHUB_WORKSPACE}/main/fetch_astral_musl.sh"
3939
# arch: "aarch64"
40-
# file: "/tmp/python-astral-musl.tar"
40+
# file: "/tmp/python.tar"
4141
# runner: "ubuntu-24.04-arm"
4242

4343
- title: "astral-musl"
4444
script: "${GITHUB_WORKSPACE}/main/fetch_astral_musl.sh"
4545
arch: "x86_64"
46-
file: "/tmp/python-astral-musl.tar"
46+
file: "/tmp/python.tar"
4747
runner: "ubuntu-latest"
4848

4949
steps:

fetch_astral_glibc.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env bash
22
## <DO NOT RUN STANDALONE, meant for CI Only>
3-
## Produces: "/tmp/python-astral-glibc.tar"
3+
## Produces: "/tmp/python.tar"
44
## Self: https://raw.githubusercontent.com/pkgforge-dev/python-standalone/refs/heads/main/fetch_astral_glibc.sh
55
# PARALLEL_LIMIT="20" bash <(curl -qfsSL "https://raw.githubusercontent.com/pkgforge-dev/python-standalone/refs/heads/main/fetch_astral_glibc.sh")
66
#-------------------------------------------------------#
77

88
#-------------------------------------------------------#
9-
OUT_FILE="/tmp/python-astral-glibc.tar"
9+
OUT_FILE="/tmp/python.tar"
1010
SRC_REPO="astral-sh/python-build-standalone"
1111
pushd "$(mktemp -d)" &>/dev/null && TMPDIR="$(realpath .)"
1212
#Fetch Release Metadata

fetch_astral_musl.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env bash
22
## <DO NOT RUN STANDALONE, meant for CI Only>
3-
## Produces: "/tmp/python-astral-musl.tar"
3+
## Produces: "/tmp/python.tar"
44
## Self: https://raw.githubusercontent.com/pkgforge-dev/python-standalone/refs/heads/main/fetch_astral_musl.sh
55
# PARALLEL_LIMIT="20" bash <(curl -qfsSL "https://raw.githubusercontent.com/pkgforge-dev/python-standalone/refs/heads/main/fetch_astral_musl.sh")
66
#-------------------------------------------------------#
77

88
#-------------------------------------------------------#
9-
OUT_FILE="/tmp/python-astral-musl.tar"
9+
OUT_FILE="/tmp/python.tar"
1010
SRC_REPO="astral-sh/python-build-standalone"
1111
pushd "$(mktemp -d)" &>/dev/null && TMPDIR="$(realpath .)"
1212
#Fetch Release Metadata

0 commit comments

Comments
 (0)