Skip to content

Commit

Permalink
add qemu.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbra committed Sep 10, 2023
1 parent 24a95f4 commit 6ef6f59
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/qemu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Qemu

on: [push, pull_request]

jobs:
qemu_job:
timeout-minutes: 60
runs-on: ubuntu-22.04
name: Vim on Qemu
strategy:
fail-fast: false
matrix:
arch: [ "s390x", "aarch64", "riscv64" ]
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: ubuntu22.04
githubToken: ${{ github.token }}
shell: /bin/bash

run: |
lscpu
apt-get update -q -y
apt-get install -q -y --no-install-recommends build-essential libncurses-dev libsodium-dev
pushd src
./configure --with-features=huge --enable-gui=no
make -j$(getconf _NPROCESSORS_ONLN)
./vim --version
cd testdir
make
popd

0 comments on commit 6ef6f59

Please sign in to comment.