Skip to content

Commit 1db36b1

Browse files
committed
Copy over CentOS test
1 parent 3928c4d commit 1db36b1

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yml

+29
Original file line numberDiff line numberDiff line change
@@ -480,3 +480,32 @@ jobs:
480480
- name: "Validate global Python install"
481481
shell: bash -el {0}
482482
run: python ./scripts/check_system_python.py --uv ./uv
483+
484+
system-test-amazonlinux:
485+
needs: build-binary-linux
486+
name: "check system | amazonlinux"
487+
runs-on: ubuntu-latest
488+
container: amazonlinux:2023
489+
steps:
490+
- name: "Install base requirements"
491+
run: |
492+
# Needed for `actions/checkout`
493+
yum install tar gzip -y
494+
- uses: actions/checkout@v4
495+
496+
- name: "Install Python"
497+
run: yum install python3 python3-pip -y
498+
499+
- name: "Download binary"
500+
uses: actions/download-artifact@v4
501+
with:
502+
name: uv-linux-${{ github.sha }}
503+
504+
- name: "Prepare binary"
505+
run: chmod +x ./uv
506+
507+
- name: "Print Python path"
508+
run: echo $(which python3)
509+
510+
- name: "Validate global Python install"
511+
run: python3 scripts/check_system_python.py --uv ./uv

0 commit comments

Comments
 (0)