Skip to content

update

update #17

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
- uses: uraimo/run-on-arch-action@v2
name: Build on Qemu
id: runcmd
with:
arch: ${{ matrix.arch }}
distro: ubuntu20.04
githubToken: ${{ github.token }}
shell: /bin/bash
setup: |
mkdir -p ./artifacts
echo "NPROC=$(getconf _NPROCESSORS_ONLN)" >> $GITHUB_ENV
run: |
apt-get update -q -y
apt-get install -q -y build-essential libncurses-dev
# Build Vim
echo "Building Vim"
pushd src
./configure
make -j${NPROC}
# Test
echo "Testing Vim"
./vim --version
# make test
popd
cp vim /artifacts
- name: Show artifacts
run: |
ls -al ./artifacts