Skip to content

fix file

fix file #3

Workflow file for this run

name: 'Simple build for Linux'

Check failure on line 1 in .github/workflows/build-linux.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-linux.yml

Invalid workflow file

(Line: 7, Col: 5): Required property is missing: runs-on
on: [push, pull_request]
jobs:
build:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install prerequisites
run: |
sudo apt update
sudo apt-get install -y -q --no-install-recommends \
build-essential \
libgcrypt-dev \
libglib2.0-dev \
libpixman-1-dev \
libsdl2-dev \
libslirp-dev \
ninja-build \
python3-pip \
libvte-2.91-dev \
wget \
zlib1g-dev
# Not needed:
# libgtk-3-dev # only needed for --enable-gtk
# git \
- name: Compile it
run: |
cat /proc/cpuinfo
make -j4 # how many cores?
- name: Dist artifacts (${{ matrix.target }} @ ${{ matrix.platform }})
uses: actions/upload-artifact@v4
with:
name: qemu-system-xtensa
path: build/qemu-system-xtensa