Update .gitea/workflows/build-iso.yml
Some checks failed
Build ISO and Upload Artifact / build-and-upload (push) Has been cancelled

This commit is contained in:
2025-11-29 21:32:51 +01:00
parent 22067353e4
commit 1ba34256ee

View File

@@ -12,38 +12,38 @@ jobs:
RUNNER_TOOL_CACHE: /toolcache RUNNER_TOOL_CACHE: /toolcache
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Make a file with a lot of repeated text - name: Make a file with a lot of repeated text
run: | run: |
for i in {1..100000}; do echo -n 'foobar' >> foobar.txt; done for i in {1..100000}; do echo -n 'foobar' >> foobar.txt; done
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v3
with: with:
name: my-artifact name: my-artifact
path: foobar.txt path: foobar.txt
compression-level: 9 # maximum compression compression-level: 9 # maximum compression
# - name: Checkout code # - name: Checkout code
# uses: actions/checkout@v4 # uses: actions/checkout@v4
# - name: Install dependencies # - name: Install dependencies
# run: | # run: |
# sudo apt update # sudo apt update
# sudo apt install -y clang lld mtools xorriso # sudo apt install -y clang lld mtools xorriso
# - name: Clone edk2 # - name: Clone edk2
# run: | # run: |
# git clone https://github.com/tianocore/edk2.git ./edk2 # git clone https://github.com/tianocore/edk2.git ./edk2
# - name: Make scripts executable # - name: Make scripts executable
# run: chmod +x ./scripts/build_c.sh ./scripts/out_to_iso.sh # run: chmod +x ./scripts/build_c.sh ./scripts/out_to_iso.sh
# - name: Run build_c.sh # - name: Run build_c.sh
# run: ./scripts/build_c.sh # run: ./scripts/build_c.sh
# - name: Run out_to_iso.sh # - name: Run out_to_iso.sh
# run: ./scripts/out_to_iso.sh # run: ./scripts/out_to_iso.sh
# - name: Upload ISO artifact # - name: Upload ISO artifact
# uses: actions/upload-artifact@v2 # uses: actions/upload-artifact@v2
# with: # with:
# include-hidden-files: true # include-hidden-files: true
# name: built-iso # name: built-iso
# path: ./out/lints.iso # path: ./out/lints.iso