Skip to content

only s390 job

only s390 job #18

Workflow file for this run

name: Qemu
on: [push, pull_request]
jobs:
qemu_job:
timeout-minutes: 60
runs-on: ubuntu-20.04
name: Build Vim on Qemu
strategy:
matrix:
arch: [ "s390x" ]
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
run: |
echo $(lscpu)
apt-get update -q -y
apt-get install -q -y --no-install-recommends build-essential libncurses-dev
# Build Vim
echo "Building Vim"
pushd src
./configure
make -j2
# Test
echo "Testing Vim"
./vim --version
# make test
popd
cp vim /artifacts
- name: Show artifacts
run: |
ls -al ./artifacts