-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 932 Bytes
/
qemu.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Qemu
on: [push, pull_request]
jobs:
qemu_job:
timeout-minutes: 60
runs-on: ubuntu-20.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: ubuntu20.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