Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ jobs:
else
echo "keeping build trees on / (${ROOT_AVAIL}K avail vs ${MNT_AVAIL}K on /mnt)"
fi
- name: docker setup linux-kernel-oci
run: sudo python3 ./hack/build/docker-setup.py
- name: docker setup buildx
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
# - name: docker setup linux-kernel-oci
# run: sudo python3 ./hack/build/docker-setup.py
# - name: docker setup buildx
# uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
- name: docker login ghcr.io
uses: Wandalen/wretry.action@e68c23e6309f2871ca8ae4763e7629b9c258e1ea # v3.8.0
with:
Expand All @@ -142,6 +142,12 @@ jobs:
connection-string-rw: ${{ secrets.SCCACHE_AZURE_CONNECTION_STRING }}
connection-string-ro: ${{ secrets.SCCACHE_AZURE_CONNECTION_STRING_RO }}
key-prefix: kernel
- uses: actions/setup-python@v7
with:
python-version: '3.12'
cache: 'pip' # Automatically caches packages found in requirements.txt
- name: python requirements
run: pip install -r requirements.txt
- name: generate docker script
run: "./hack/build/generate-docker-script.sh"
- name: upload docker script
Expand Down
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ runners:
# Match order matters: first runner whose constraints match wins.
- name: ubuntu-24.04-arm
arch: aarch64
- name: edera-large
- name: edera-24
arch: x86_64
flavors:
- host
Expand Down
Loading