try bootstrap3
Some checks failed
/ build (push) Failing after 16m17s

This commit is contained in:
Adrien Beaudouin 2025-06-03 22:10:52 +02:00
parent c2472b26b8
commit d13434a1cf

View File

@ -17,40 +17,21 @@ jobs:
username: ${{ vars.CONTAINER_REGISTRY_USERNAME }}
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}
- name: Restore stage0 cache
- name: Restore stage3 cache
uses: actions/cache/restore@v4
with:
path: fetch/bootstrap/stage0
key: stage0-${{ hashFiles('packages/bootstrap/stage0/package.toml') }}
- name: Fetch stage0
path: fetch/bootstrap/stage3
key: stage3-${{ hashFiles('packages/bootstrap/stage3/package.toml') }}
- name: Fetch stage3
run: |
python3 ./src/fetch.py stage0
- name: Save stage0 cache
python3 ./src/fetch.py stage3
- name: Save stage3 cache
uses: actions/cache/save@v4
with:
path: fetch/bootstrap/stage0
key: stage0-${{ hashFiles('packages/bootstrap/stage0/package.toml') }}
- name: Build stage0
path: fetch/bootstrap/stage3
key: stage3-${{ hashFiles('packages/bootstrap/stage3/package.toml') }}
- name: Build stage3
env:
CONTAINER_REGISTRY: ${{ vars.CONTAINER_REGISTRY }}
run: |
make registry-bootstrap-stage0 REGISTRY_USERNAME=$CONTAINER_REGISTRY/okami101/stagex
- name: Restore stage1 cache
uses: actions/cache/restore@v4
with:
path: fetch/bootstrap/stage1
key: stage1-${{ hashFiles('packages/bootstrap/stage1/package.toml') }}
- name: Fetch stage1
run: |
python3 ./src/fetch.py stage1
- name: Save stage1 cache
uses: actions/cache/save@v4
with:
path: fetch/bootstrap/stage1
key: stage1-${{ hashFiles('packages/bootstrap/stage1/package.toml') }}
# - name: Build stage1
# env:
# CONTAINER_REGISTRY: ${{ vars.CONTAINER_REGISTRY }}
# run: |
# make registry-bootstrap-stage1 REGISTRY_USERNAME=$CONTAINER_REGISTRY/okami101/stagex
make registry-bootstrap-stage3 PLATFORM=linux/amd64 REGISTRY_USERNAME=$CONTAINER_REGISTRY/okami101/stagex