Skip to content

updated qemu

updated qemu #14

Workflow file for this run

name: Qemu
on: [push, pull_request]
jobs:
qemu_job:
runs-on: ubuntu-20.04
name: Build Vim on Qemu ubuntu-20.04
strategy:
matrix:
arch: [ "s390x", "aarch64" ]
steps:
- uses: actions/checkout@v3
name: Checkout Source
# with:
# path: repo

Check failure on line 16 in .github/workflows/qemu.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/qemu.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
- uses: uraimo/run-on-arch-action@v2
name: Build on Qemu
id: runcmd
with:
arch: ${{ matrix.arch }}
distro: ubuntu20.04
githubToken: ${{ github.token }}
dockerRunArgs: --volume "${GITHUB_WORKSPACE}/artifacts:/artifacts"
shell: /bin/bash
setup: |
mkdir -p ./artifacts
export NPROC=$(getconf _NPROCESSORS_ONLN)
run: |
echo $(lscpu)
apt-get update -q -y
apt-get install -q -y build-essential
# Build Vim
pushd src
./configure
make -j${NPROC}
# Test
./vim --version
# make test
popd
cp vim /artifacts
- name: Show artifacts
run: |
ls -al ./artifacts