File tree Expand file tree Collapse file tree 2 files changed +19
-12
lines changed
Expand file tree Collapse file tree 2 files changed +19
-12
lines changed Original file line number Diff line number Diff line change 1818 build_docker_images :
1919 runs-on : ubuntu-latest
2020 steps :
21- - uses : actions/checkout@v3
21+ - uses : actions/checkout@v5
2222 with :
2323 ref : refs/heads/main
24- # - name: Free Disk Space
25- # run: |
26- # ./free_disk_space.sh
27- - name : Store Docker Images on /mnt/docker
28- run : |
29- sudo ./config_docker.py
3024 - name : Login to DockerHub
3125 uses : docker/login-action@v3
3226 with :
@@ -36,11 +30,18 @@ jobs:
3630 run : |
3731 curl -LsSf https://astral.sh/uv/install.sh | sudo env UV_INSTALL_DIR="/usr/local/bin" sh
3832 which uv
33+ - name : Store Docker Images on /mnt/docker
34+ run : |
35+ sudo ./config_docker.py
36+ - name : Show Docker Images
37+ run : |
38+ docker images
3939 - name : Build Docker Images
4040 run : |
41- #df -lh
42- #docker ps
4341 ./build_images.py --branch '${{ github.event.inputs.branch }}' --repo '${{ github.event.inputs.repo }}' --root-image-name '${{ github.event.inputs.root_image_name }}'
42+ - name : Show Building Graph
43+ run : |
4444 cat graph.yaml
45- #docker ps
46- #df -lh
45+ - name : Show Docker Images
46+ run : |
47+ docker images
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python3
1+ #!/usr/bin/env -S uv run
2+ #
3+ # /// script
4+ # requires-python = "==3.13"
5+ # dependencies = []
6+ # ///
7+
28import json
39from pathlib import Path
410import subprocess as sp
You can’t perform that action at this time.
0 commit comments